From: Charles B. Haley Date: Mon, 12 Nov 1979 16:32:27 +0000 (-0800) Subject: BSD 3 development X-Git-Tag: BSD-3~742 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/073f0dd6216b82bd9c62d95c832ede22652af97c BSD 3 development Work on file usr/src/cmd/pi/whoami Co-Authored-By: Bill Joy Co-Authored-By: Ken Thompson Synthesized-from: 3bsd --- diff --git a/usr/src/cmd/pi/whoami b/usr/src/cmd/pi/whoami new file mode 100644 index 0000000000..da820ba3b1 --- /dev/null +++ b/usr/src/cmd/pi/whoami @@ -0,0 +1,28 @@ +/* + * am i generating an obj file (OBJ), + * postfix binary input to the 2nd pass of the portable c compiler (PPC), + * or pTrees (PTREE)? + */ +#define OBJ 1 +#undef PPC +#undef PTREE + +/* + * am i the vax or the pdp11 version + */ +#define VAX +#undef PDP11 + +/* + * am i pi or pxp? + */ +#define PI +#undef PXP + +/* + * am i both passes, or am i only one of the two passes pi0 or pi1? + */ +#define PI01 +#undef PI0 +#undef PI1 +