diff options
author | Alexander Kabaev <kan@FreeBSD.org> | 2003-07-11 03:42:19 +0000 |
---|---|---|
committer | Alexander Kabaev <kan@FreeBSD.org> | 2003-07-11 03:42:19 +0000 |
commit | eb05e163fcadd646f28a1b1ef1182677b325a045 (patch) | |
tree | 01f695ddb223c95a40652601894e4291cdf92786 /contrib/libf2c/libF77/d_atn2.c | |
parent | 865328879900c99b2516e0cb403295aac55ff45a (diff) | |
parent | 6bdbd039fdee37985426b3cfdb6ec9b43f1c96aa (diff) |
This commit was generated by cvs2svn to compensate for changes in r117401,
which included commits to RCS files with non-trunk default branches.
Notes
Notes:
svn path=/head/; revision=117402
Diffstat (limited to 'contrib/libf2c/libF77/d_atn2.c')
-rw-r--r-- | contrib/libf2c/libF77/d_atn2.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/contrib/libf2c/libF77/d_atn2.c b/contrib/libf2c/libF77/d_atn2.c index 6748a55d56fb..e0b217863a54 100644 --- a/contrib/libf2c/libF77/d_atn2.c +++ b/contrib/libf2c/libF77/d_atn2.c @@ -1,13 +1,9 @@ #include "f2c.h" -#ifdef KR_headers -double atan2(); -double d_atn2(x,y) doublereal *x, *y; -#else #undef abs #include <math.h> -double d_atn2(doublereal *x, doublereal *y) -#endif +double +d_atn2 (doublereal * x, doublereal * y) { -return( atan2(*x,*y) ); + return (atan2 (*x, *y)); } |