qc.hlp (Table of Contents; Topic list)
exception, _exceptionl
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Include:  <math.h>
 
  Structure:
 
  struct exception
  {
      int type;            // Exception type
      char *name;          // Name of function where error occurred
      double arg1;         // First argument to function
      double arg2;         // Second argument (if any) to function
      double retval;       // Value to be returned by function
  } ;
 
  struct _exceptionl
  {
      int type;            // Exception type
      char *name;          // Name of function where error occurred
      long double arg1;    // First argument to function
      long double arg2;    // Second argument (if any) to function
      long double retval;  // Value to be returned by function
  } ;