diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-01 01:53:53 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-01 01:53:53 +0000 |
commit | 0bdeb43b6275adf3cf3dbde04107722c638a3743 (patch) | |
tree | 693a2481f59e62982389a205d2b15b5bfa3e0b2b /libf2c/libF77/r_atn2.c | |
parent | caa6c56774eb62227337101cbb7e007e2f6f9de6 (diff) | |
download | gcc-0bdeb43b6275adf3cf3dbde04107722c638a3743.tar.gz |
* libF77/*: Delete KR_headers cruft.
* libI77/*: Likewise.
* libU77/*: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54132 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libf2c/libF77/r_atn2.c')
-rw-r--r-- | libf2c/libF77/r_atn2.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libf2c/libF77/r_atn2.c b/libf2c/libF77/r_atn2.c index 9347e1f13a9..0abc146bbc8 100644 --- a/libf2c/libF77/r_atn2.c +++ b/libf2c/libF77/r_atn2.c @@ -1,13 +1,8 @@ #include "f2c.h" -#ifdef KR_headers -double atan2(); -double r_atn2(x,y) real *x, *y; -#else #undef abs #include <math.h> double r_atn2(real *x, real *y) -#endif { return( atan2(*x,*y) ); } |