mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix missing prototype and simplify sincosl on ld64 archs
This commit is contained in:
parent
fe2df4ad3e
commit
007c03f84f
1 changed files with 2 additions and 4 deletions
|
@ -1,12 +1,10 @@
|
|||
#define _GNU_SOURCE
|
||||
#include "libm.h"
|
||||
|
||||
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
|
||||
void sincosl(long double x, long double *sin, long double *cos)
|
||||
{
|
||||
double s, c;
|
||||
sincos(x, &s, &c);
|
||||
*sin = s;
|
||||
*cos = c;
|
||||
sincos(x, (double *)sin, (double *)cos);
|
||||
}
|
||||
#elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
|
||||
void sincosl(long double x, long double *sin, long double *cos)
|
||||
|
|
Loading…
Add table
Reference in a new issue