home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / FORTRAN / F2C_SRC.ZIP / F2C / LIBF77 / DERFC_.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  99 b   |  10 lines

  1. #include "f2c.h"
  2.  
  3. double derfc_(x)
  4. doublereal *x;
  5. {
  6. double erfc();
  7.  
  8. return( erfc(*x) );
  9. }
  10.