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:
Diffstat (limited to 'newlib/libm/mathfp/sf_sinh.c')
-rw-r--r--newlib/libm/mathfp/sf_sinh.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/newlib/libm/mathfp/sf_sinh.c b/newlib/libm/mathfp/sf_sinh.c
new file mode 100644
index 000000000..a50e56606
--- /dev/null
+++ b/newlib/libm/mathfp/sf_sinh.c
@@ -0,0 +1,34 @@
+
+/* @(#)z_sinhf.c 1.0 98/08/13 */
+/******************************************************************
+ * Hyperbolic Sine
+ *
+ * Input:
+ * x - floating point value
+ *
+ * Output:
+ * hyperbolic sine of x
+ *
+ * Description:
+ * This routine returns the hyperbolic sine of x.
+ *
+ *****************************************************************/
+
+#include "fdlibm.h"
+#include "zmath.h"
+
+float
+_DEFUN (sinhf, (float),
+ float x)
+{
+ return (sinehf (x, 0));
+}
+
+#ifdef _DOUBLE_IS_32BITS
+
+double sinh (double x)
+{
+ return (double) sinhf ((float) x);
+}
+
+#endif /* _DOUBLE_IS_32BITS */