cc8a661ac55e5471e7d64105bda73e3321cbc54d
1 /* vi: set sw=4 ts=4: */
11 float cosf(float x
) /* wrapper cos */
13 float cosf(x
) /* wrapper cos */
17 return (float) cos( (double)x
);
28 float sinf(float x
) /* wrapper sin */
30 float sinf(x
) /* wrapper sin */
34 return (float) sin( (double)x
);
This page took 0.055057 seconds and 3 git commands to generate.