mirror of git://git.musl-libc.org/musl
implement sincosf and sincosl functions; add prototypes
presumably broken gcc may generate calls to these, and it's said that ffmpeg makes use of sincosf.
This commit is contained in:
parent
46702f68f9
commit
5657cc58e5
|
@ -382,6 +382,9 @@ long double ynl(int, long double);
|
|||
double scalb(double, double);
|
||||
float scalbf(float, float);
|
||||
long double scalbl(long double, long double);
|
||||
void sincosf(float, float *, float *);
|
||||
void sincos(double, double *, double *);
|
||||
void sincosl(long double, long double *, long double *);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -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