home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / f2c / f77lib / erfc_.c < prev    next >
C/C++ Source or Header  |  2000-06-22  |  163b  |  13 lines

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