summaryrefslogtreecommitdiff
path: root/sysdeps/ia64/fpu/s_sincosl.c
blob: a835b772e24df6911e30e3d176a62d3097aefdfc (plain)
1
2
3
4
5
6
7
8
9
#include <math.h>

void
__sincosl (long double x, long double *s, long double *c)
{
  *s = sinl (x);
  *c = cosl (x);
}
weak_alias (__sincosl, sincosl)