diff options
Diffstat (limited to 'newlib/libm/math')
-rw-r--r-- | newlib/libm/math/w_cosh.c | 6 | ||||
-rw-r--r-- | newlib/libm/math/w_fmod.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/newlib/libm/math/w_cosh.c b/newlib/libm/math/w_cosh.c index ab046f6ed..54bfec37d 100644 --- a/newlib/libm/math/w_cosh.c +++ b/newlib/libm/math/w_cosh.c @@ -19,14 +19,14 @@ FUNCTION ANSI_SYNOPSIS #include <math.h> double cosh(double <[x]>); - float coshf(float <[x]>) + float coshf(float <[x]>); TRAD_SYNOPSIS #include <math.h> - double cosh(<[x]>) + double cosh(<[x]>); double <[x]>; - float coshf(<[x]>) + float coshf(<[x]>); float <[x]>; DESCRIPTION diff --git a/newlib/libm/math/w_fmod.c b/newlib/libm/math/w_fmod.c index 47d1dd081..f9f72c745 100644 --- a/newlib/libm/math/w_fmod.c +++ b/newlib/libm/math/w_fmod.c @@ -22,15 +22,15 @@ fmodf ANSI_SYNOPSIS #include <math.h> -double fmod(double <[x]>, double <[y]>) -float fmodf(float <[x]>, float <[y]>) +double fmod(double <[x]>, double <[y]>); +float fmodf(float <[x]>, float <[y]>); TRAD_SYNOPSIS #include <math.h> -double fmod(<[x]>, <[y]>) +double fmod(<[x]>, <[y]>); double (<[x]>, <[y]>); -float fmodf(<[x]>, <[y]>) +float fmodf(<[x]>, <[y]>); float (<[x]>, <[y]>); DESCRIPTION |