home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / MAWK113.ZIP / mawk113 / config / dynix.h < prev    next >
C/C++ Source or Header  |  1991-09-25  |  741b  |  38 lines

  1.  
  2. /********************************************
  3. dynix.h
  4.  
  5. This is a source file for mawk, an implementation of
  6. the AWK programming language.
  7.  
  8. Mawk is distributed without warranty under the terms of
  9. the GNU General Public License, version 2, 1991.
  10. ********************************************/
  11.  
  12. /*$Log:
  13. */
  14.  
  15. /*
  16.  * should work on any Sequent running Final DYNIX
  17.  */
  18.  
  19. #ifndef  CONFIG_H
  20. #define  CONFIG_H    1
  21.  
  22. #define      HAVE_STRTOD        0
  23. #define      HAVE_FMOD        0
  24. #define   vfprintf(s,f,a)    _doprnt(f,a,s)
  25. #define   FPE_TRAPS_ON        1
  26. #define      HAVE_MATHERR        0
  27. #include  <sys/types.h>
  28. #include  <machine/fpu.h>
  29. #define   FPE_ZERODIVIDE   FPE_FLTDIV_TRAP
  30. #define   FPE_OVERFLOW     FPE_FLTOVF_TRAP
  31.  
  32. extern char *strchr();
  33.  
  34. #include "config/Idefault.h"
  35.  
  36. #endif
  37.  
  38.