BSD 4_3 release
[unix-history] / usr / src / ucb / pascal / src / opc.c
CommitLineData
bbe93629
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
4c0c106d 6
72fbef68 7#ifndef lint
bbe93629
DF
8char copyright[] =
9"@(#) Copyright (c) 1980 Regents of the University of California.\n\
10 All rights reserved.\n";
11#endif not lint
4c0c106d
PK
12
13#include "OPnames.h"
14
15main() {
16 register int i;
17
18 for (i = 0; i < 256; i++)
19 if (otext[i])
20 printf("#define O_%s %04o\n", otext[i]+1, i);
21 exit(0);
22}