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

  1. #include "f2c.h"
  2.  
  3. #ifdef KR_headers
  4. extern double erfc();
  5.  
  6. double derfc_(x) doublereal *x;
  7. #else
  8. extern double erfc(double);
  9.  
  10. double derfc_(doublereal *x)
  11. #endif
  12. {
  13. return( erfc(*x) );
  14. }
  15.