summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-15 02:38:42 -0400
committerRich Felker <dalias@aerifal.cx>2012-03-15 02:38:42 -0400
commit5657cc58e5e135bba85c9a7045e10d8de4b1be0a (patch)
tree9eb1a46ac4ea495e3b90d11a42f33c05102a854b /include
parent46702f68f98244f7384d6ac1742a452f0d7a2610 (diff)
downloadmusl-5657cc58e5e135bba85c9a7045e10d8de4b1be0a.tar.gz
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.
Diffstat (limited to 'include')
-rw-r--r--include/math.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/math.h b/include/math.h
index f320b8e9..e9871516 100644
--- a/include/math.h
+++ b/include/math.h
@@ -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