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

  1.  
  2. /********************************************
  3. apollo.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /* 
  14.    compiled and tested on apollo SR10.3
  15. */
  16.  
  17. #ifndef   CONFIG_H
  18. #define   CONFIG_H    1
  19.  
  20. /* don't have IEEE hardware */
  21. #define   FPE_TRAPS_ON        1
  22. #define   FPE_ZERODIVIDE   FPE_FLTDIV_FAULT
  23. #define   FPE_OVERFLOW     FPE_FLTOVF_FAULT
  24.  
  25. /* compiler sets __STDC__ but really is not ansi */
  26. #undef  __STDC__
  27.  
  28. #include "config/Idefault.h"
  29.  
  30.  
  31. #endif  /* CONFIG_H  */
  32.  
  33.