xref: /original-bsd/usr.bin/pascal/src/opc.c (revision 6386612b)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 #ifndef lint
4 static	char sccsid[] = "@(#)opc.c 2.1 02/08/84";
5 #endif
6 
7 #include "OPnames.h"
8 
9 main()  {
10 	register int i;
11 
12 	for (i = 0;  i < 256;  i++)
13 		if (otext[i])
14 			printf("#define O_%s %04o\n", otext[i]+1, i);
15 	exit(0);
16 }
17