386BSD 0.1 development
[unix-history] / usr / src / usr.bin / awk / config / apollo.h
CommitLineData
d2713949
WJ
1
2/********************************************
3apollo.h
4copyright 1991, Michael D. Brennan
5
6This is a source file for mawk, an implementation of
7the AWK programming language.
8
9Mawk is distributed without warranty under the terms of
10the 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