home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / fortran / f2c_src.zip / F2C / LIBF77 / D_ATN2.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  108 b   |  9 lines

  1. #include "f2c.h"
  2.  
  3. double d_atn2(x,y)
  4. doublereal *x, *y;
  5. {
  6. double atan2();
  7. return( atan2(*x,*y) );
  8. }
  9.