diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-21 16:43:03 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-21 16:43:03 +0000 |
commit | f6e41545ea5f1c5900001e60324b6deff61cc762 (patch) | |
tree | 96b8d92ea30fc536b7e220f7b7ca92accaaa47c0 /lib/libF77/r_sin.c | |
parent | 565592bd9cb804b6e6ce47abedcfba472a8b0d73 (diff) |
Remove the old libf2c. libg2c is now serving us well.
Notes
Notes:
svn path=/head/; revision=45922
Diffstat (limited to 'lib/libF77/r_sin.c')
-rw-r--r-- | lib/libF77/r_sin.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/libF77/r_sin.c b/lib/libF77/r_sin.c deleted file mode 100644 index d2a3dac8581e..000000000000 --- a/lib/libF77/r_sin.c +++ /dev/null @@ -1,13 +0,0 @@ -#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) ); -} |