xref: /original-bsd/usr.bin/pascal/src/pcwhoami.h (revision 56abee86)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 /* static	char sccsid[] = "@(#)pcwhoami.h 1.2 03/06/81"; */
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 #undef	OBJ
11 #define	PC
12 #undef	PTREE
13 
14 /*
15  *	am i the vax or the pdp11 version
16  */
17 #define VAX
18 #undef	PDP11
19 #define DEC11
20 
21 /*
22  *	am i pi or pxp?
23  */
24 #define PI
25 #undef	PXP
26 
27 /*
28  *	am i both passes, or am i only one of the two passes pi0 or pi1?
29  */
30 #define	PI01
31 #undef	PI0
32 #undef	PI1
33 
34