Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Fitzsimmons <fitzsim@redhat.com>2002-08-17 01:29:45 +0400
committerThomas Fitzsimmons <fitzsim@redhat.com>2002-08-17 01:29:45 +0400
commitd3bd3632ac06bdb7f76b13494873b3567edabcbf (patch)
treef7d4c5083ac5dbdc7b55c198fe3df5651e9c4e02 /newlib/libc/include
parente0f61e607c336e5ad589afd95a13161a202dd1ba (diff)
* libc/sys/linux/cmath: New directory.
* libc/sys/linux/include/cmathcalls.h: New file. * libc/sys/linux/include/complex.h: New file. * libc/sys/linux/machine/i386/huge_val.h: New file * libm/math/w_sincos.c: New file * libm/math/wf_sincos.c: New file * libm/mathfp/s_sincos.c: New file * libm/mathfp/sf_sincos.c: New file * Makefile.am (LIBC_OBJECTLISTS): Add cmath/objectlist.awk.in. * libc/include/math.h: Add sincos and sincosf declarations. * libc/sys/linux/Makefile.am (SUBDIRS): Add cmath. (SUBLIBS): Likewise. * libc/sys/linux/configure.in (AC_OUTPUT): Add cmath. * libm/math/Makefile.am (src): Add w_sincos.c. (fsrc): Add wf_sincos.c. * libm/mathfp/Makefile.am (src): Add s_sincos.c (fsrc): Add sf_sincos.c.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r--newlib/libc/include/math.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h
index ee2f08701..16098c66c 100644
--- a/newlib/libc/include/math.h
+++ b/newlib/libc/include/math.h
@@ -146,6 +146,7 @@ extern double fdim _PARAMS((double, double));
extern double fmax _PARAMS((double, double));
extern double fmin _PARAMS((double, double));
extern double fma _PARAMS((double, double, double));
+extern void sincos _PARAMS((double, double *, double *));
#ifndef __math_68881
extern double log1p _PARAMS((double));
@@ -247,6 +248,7 @@ extern float rintf _PARAMS((float));
extern float scalbnf _PARAMS((float, int));
extern float log1pf _PARAMS((float));
extern float expm1f _PARAMS((float));
+extern void sincosf _PARAMS((float, float *, float *));
#ifndef _REENT_ONLY
extern float acoshf _PARAMS((float));