mirror of git://sourceware.org/git/glibc.git
10 lines
134 B
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)
|