BSD 3 development
[unix-history] / usr / src / cmd / pi / whoami
CommitLineData
073f0dd6
CH
1/*
2 * am i generating an obj file (OBJ),
3 * postfix binary input to the 2nd pass of the portable c compiler (PPC),
4 * or pTrees (PTREE)?
5 */
6#define OBJ 1
7#undef PPC
8#undef PTREE
9
10/*
11 * am i the vax or the pdp11 version
12 */
13#define VAX
14#undef PDP11
15
16/*
17 * am i pi or pxp?
18 */
19#define PI
20#undef PXP
21
22/*
23 * am i both passes, or am i only one of the two passes pi0 or pi1?
24 */
25#define PI01
26#undef PI0
27#undef PI1
28