(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / ia64 / fpu / s_sincosf.c
blobefd0fe303818276df5cb1e92742161fba33ce632
1 #include <math.h>
3 void
4 __sincosf (float x, float *s, float *c)
6 *s = sinf (x);
7 *c = cosf (x);
9 weak_alias (__sincosf, sincosf)