BSD 4_1c_2 release
[unix-history] / usr / src / ucb / pascal / src / opc.c
CommitLineData
4c0c106d
PK
1/* Copyright (c) 1979 Regents of the University of California */
2
31cef89c 3static char sccsid[] = "@(#)opc.c 1.1 8/27/80";
4c0c106d
PK
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}