home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / utils / f2c / f77lib / r_tan.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-09  |  162 b   |  14 lines

  1. #include "f2c.h"
  2.  
  3. #ifdef KR_headers
  4. double tan();
  5. double r_tan(x) real *x;
  6. #else
  7. #undef abs
  8. #include "math.h"
  9. double r_tan(real *x)
  10. #endif
  11. {
  12. return( tan(*x) );
  13. }
  14.