erf_.c 270 B

12345678910111213141516171819202122
  1. #include "f2c.h"
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #ifndef REAL
  6. #define REAL double
  7. #endif
  8. #ifdef KR_headers
  9. double erf();
  10. REAL erf_(x) real *x;
  11. #else
  12. extern double erf(double);
  13. REAL erf_(real *x)
  14. #endif
  15. {
  16. return( erf((double)*x) );
  17. }
  18. #ifdef __cplusplus
  19. }
  20. #endif