home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
f2csrc.zip
/
f2csrc
/
libF77
/
r_atan.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-28
|
179b
|
14 lines
#include "f2c.h"
#ifdef KR_headers
double atan();
double r_atan(x) real *x;
#else
#undef abs
#include "math.h"
double r_atan(real *x)
#endif
{
return( atan(*x) );
}