glibc/sysdeps/ia64/fpu/s_sincosf.c

10 lines
134 B
C

#include <math.h>
void
__sincosf (float x, float *s, float *c)
{
*s = sinf (x);
*c = cosf (x);
}
weak_alias (__sincosf, sincosf)