/*- * Copyright (c) 1980 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint char copyright[] = "@(#) Copyright (c) 1980 The Regents of the University of California.\n\ All rights reserved.\n"; #endif /* not lint */ #ifndef lint static char sccsid[] = "@(#)opc.c 5.2 (Berkeley) 04/16/91"; #endif /* not lint */ #include "OPnames.h" main() { register int i; for (i = 0; i < 256; i++) if (otext[i]) printf("#define O_%s %04o\n", otext[i]+1, i); exit(0); }