xref: /original-bsd/usr.bin/pascal/src/piwhoami.h (revision 552e81d8)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 /* static	char sccsid[] = "@(#)piwhoami.h 1.1 10/01/80"; */
4 
5 /*
6  *	am i generating an obj file (OBJ),
7  *	postfix binary input to the 2nd pass of the portable c compiler (PC),
8  *	or pTrees (PTREE)?
9  */
10 #define	OBJ
11 #undef	PC
12 #undef	PTREE
13 
14 /*
15  *	am i the vax or the pdp11 version
16  */
17 #define VAX
18 #undef	PDP11
19 
20 /*
21  *	am i pi or pxp?
22  */
23 #define PI
24 #undef	PXP
25 
26 /*
27  *	am i both passes, or am i only one of the two passes pi0 or pi1?
28  */
29 #define	PI01
30 #undef	PI0
31 #undef	PI1
32 
33