home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / f_2_c / libf77 / derf_.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  96 b   |  10 lines

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