mirror of https://git.musl-libc.org/git/musl
Browse Source
presumably broken gcc may generate calls to these, and it's said that ffmpeg makes use of sincosf.rs-1.0
3 changed files with 19 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
#define _GNU_SOURCE |
|||
#include <math.h> |
|||
|
|||
void sincosf(float t, float *y, float *x) |
|||
{ |
|||
*y = sinf(t); |
|||
*x = cosf(t); |
|||
} |
|||
@ -0,0 +1,8 @@ |
|||
#define _GNU_SOURCE |
|||
#include <math.h> |
|||
|
|||
void sincosl(long double t, long double *y, long double *x) |
|||
{ |
|||
*y = sinl(t); |
|||
*x = cosl(t); |
|||
} |
|||
Loading…
Reference in new issue