mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
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)
|