diff options
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/include/math.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 824ea70a7..990a12f8f 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2010-10-14 Craig Howland <howland@LGSInnovations.com> + + * libc/include/math.h: Delete cabs() and cabs() prototypes + (c.f. 2010-10-08 change by Corinna). + 2010-10-08 Bernd Schmidt <bernds@codesourcery.com> Joseph Myers <joseph@codesourcery.com> diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h index 6e9da28f6..d70f65bba 100644 --- a/newlib/libc/include/math.h +++ b/newlib/libc/include/math.h @@ -440,7 +440,6 @@ extern _LONG_LONG_TYPE llrintl _PARAMS((_LONG_DOUBLE)); #if !defined (__STRICT_ANSI__) || defined(__cplusplus) -extern double cabs(); extern double drem _PARAMS((double, double)); extern void sincos _PARAMS((double, double *, double *)); extern double gamma_r _PARAMS((double, int *)); @@ -453,7 +452,6 @@ extern double j0 _PARAMS((double)); extern double j1 _PARAMS((double)); extern double jn _PARAMS((int, double)); -extern float cabsf(); extern float dremf _PARAMS((float, float)); extern void sincosf _PARAMS((float, float *, float *)); extern float gammaf_r _PARAMS((float, int *)); |