|
@@ -315,6 +315,11 @@ int isnanf(float) __pure2;
|
|
|
double gamma_r(double, int *);
|
|
|
double lgamma_r(double, int *);
|
|
|
|
|
|
+/*
|
|
|
+ * Single sine/cosine function.
|
|
|
+ */
|
|
|
+void sincos(double, double *, double *);
|
|
|
+
|
|
|
/*
|
|
|
* IEEE Test Vector
|
|
|
*/
|
|
@@ -411,6 +416,11 @@ float ynf(int, float);
|
|
|
float gammaf_r(float, int *);
|
|
|
float lgammaf_r(float, int *);
|
|
|
|
|
|
+/*
|
|
|
+ * Single sine/cosine function.
|
|
|
+ */
|
|
|
+void sincosf(float, float *, float *);
|
|
|
+
|
|
|
/*
|
|
|
* float version of IEEE Test Vector
|
|
|
*/
|
|
@@ -485,6 +495,11 @@ long double truncl(long double);
|
|
|
/* Reentrant version of lgammal. */
|
|
|
#if __BSD_VISIBLE
|
|
|
long double lgammal_r(long double, int *);
|
|
|
+
|
|
|
+/*
|
|
|
+ * Single sine/cosine function.
|
|
|
+ */
|
|
|
+void sincosl(long double, long double *, long double *);
|
|
|
#endif /* __BSD_VISIBLE */
|
|
|
|
|
|
#if defined(__cplusplus)
|