fixed for man command; added reference
[unix-history] / usr / src / usr.bin / pascal / src / opc.c
CommitLineData
4c0c106d
PK
1/* Copyright (c) 1979 Regents of the University of California */
2
3static char sccsid[] = "@(#)opc.c 1.1 %G%";
4
5#include "OPnames.h"
6
7main() {
8 register int i;
9
10 for (i = 0; i < 256; i++)
11 if (otext[i])
12 printf("#define O_%s %04o\n", otext[i]+1, i);
13 exit(0);
14}