summaryrefslogtreecommitdiff
path: root/libc/sysdeps/ieee754/ldbl-wrap/e_asinl.c
blob: 71ee4f95f18a54cedd4bc0ed36beb148a6099871 (plain)
1
2
3
4
5
6
7
8
9
#include "ldbl-wrap.h"

wrap_type_t WRAP_FUNC (__ieee754_asin) (wrap_type_t);

long double
__ieee754_asinl (long double x)
{
  return (long double) WRAP_FUNC (__ieee754_asin) ((wrap_type_t) x);
}