diff options
Diffstat (limited to 'libf2c/libF77/r_sin.c')
-rw-r--r-- | libf2c/libF77/r_sin.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libf2c/libF77/r_sin.c b/libf2c/libF77/r_sin.c index 095b9510de9..9d7db2ce7c7 100644 --- a/libf2c/libF77/r_sin.c +++ b/libf2c/libF77/r_sin.c @@ -1,13 +1,8 @@ #include "f2c.h" -#ifdef KR_headers -double sin(); -double r_sin(x) real *x; -#else #undef abs #include <math.h> double r_sin(real *x) -#endif { return( sin(*x) ); } |