home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c220 / 3.ddi / WEITEK / MATHERR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-16  |  213 b   |  14 lines

  1. #include <math.h>
  2. #include <stdefs.h>
  3.  
  4. struct exception {
  5.     long type;
  6.     double arg1,arg2,retval;
  7. };
  8.  
  9. math_err_control(x)
  10. struct exception *x;
  11. {
  12.     if ((x->type & 7) < 3) errno=EDOM; else errno=ERANGE;
  13. }
  14.