OSDN Git Service

Add files to the new contrib/reghunt directory:
[pf3gnuchains/gcc-fork.git] / libf2c / libF77 / d_sinh.c
index 77f3690..dc9dc43 100644 (file)
@@ -1,13 +1,9 @@
 #include "f2c.h"
 
-#ifdef KR_headers
-double sinh();
-double d_sinh(x) doublereal *x;
-#else
 #undef abs
 #include <math.h>
-double d_sinh(doublereal *x)
-#endif
+double
+d_sinh (doublereal * x)
 {
-return( sinh(*x) );
+  return (sinh (*x));
 }