diff options
Diffstat (limited to 'newlib/libm/mathfp/sf_cosh.c')
-rw-r--r-- | newlib/libm/mathfp/sf_cosh.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libm/mathfp/sf_cosh.c b/newlib/libm/mathfp/sf_cosh.c index 4635b71..c747e90 100644 --- a/newlib/libm/mathfp/sf_cosh.c +++ b/newlib/libm/mathfp/sf_cosh.c @@ -18,8 +18,7 @@ #include "zmath.h" float -_DEFUN (coshf, (float), - float x) +coshf (float x) { return (sinehf (x, 1)); } |