Revision 4268,
380 bytes
checked in by epeisach, 34 years ago
(diff) |
Added definitions for AIX3.1 (RS/6000)
|
Line | |
---|
1 | #ifdef ultrix |
---|
2 | #include <dbm.h> |
---|
3 | #endif |
---|
4 | |
---|
5 | main() |
---|
6 | { |
---|
7 | #ifdef _AUX_SOURCE |
---|
8 | printf("-D_AUX_SOURCE"); |
---|
9 | #endif |
---|
10 | #if defined(AIX) && defined(_I386) |
---|
11 | printf("-DAIX -D_I386 -Di386"); |
---|
12 | #endif |
---|
13 | #ifdef ultrix |
---|
14 | #ifdef BYTESIZ |
---|
15 | printf("-Dultrix"); |
---|
16 | #else |
---|
17 | printf("-Dultrix -DULTRIX40"); |
---|
18 | #endif |
---|
19 | #endif |
---|
20 | #if defined(_IBMR2) && defined(_AIX) |
---|
21 | printf("-D_IBMR2 -D_AIX"); |
---|
22 | #endif |
---|
23 | exit(0); |
---|
24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.