Deleted Added
full compact
maketab.c (170332) maketab.c (201951)
1/****************************************************************
2Copyright (C) Lucent Technologies 1997
3All Rights Reserved
4
5Permission to use, copy, modify, and distribute this software and
6its documentation for any purpose and without fee is hereby
7granted, provided that the above copyright notice appear in all
8copies and that both that the copyright notice and this

--- 88 unchanged lines hidden (view full) ---

97 { EXIT, "jump", "exit" },
98 { BREAK, "jump", "break" },
99 { CONTINUE, "jump", "continue" },
100 { RETURN, "jump", "ret" },
101 { BLTIN, "bltin", "bltin" },
102 { CALL, "call", "call" },
103 { ARG, "arg", "arg" },
104 { VARNF, "getnf", "NF" },
1/****************************************************************
2Copyright (C) Lucent Technologies 1997
3All Rights Reserved
4
5Permission to use, copy, modify, and distribute this software and
6its documentation for any purpose and without fee is hereby
7granted, provided that the above copyright notice appear in all
8copies and that both that the copyright notice and this

--- 88 unchanged lines hidden (view full) ---

97 { EXIT, "jump", "exit" },
98 { BREAK, "jump", "break" },
99 { CONTINUE, "jump", "continue" },
100 { RETURN, "jump", "ret" },
101 { BLTIN, "bltin", "bltin" },
102 { CALL, "call", "call" },
103 { ARG, "arg", "arg" },
104 { VARNF, "getnf", "NF" },
105 { GETLINE, "getline", "getline" },
105 { GETLINE, "awkgetline", "getline" },
106 { 0, "", "" },
107};
108
109#define SIZE (LASTTOKEN - FIRSTTOKEN + 1)
110const char *table[SIZE];
111char *names[SIZE];
112
113int main(int argc, char *argv[])

--- 55 unchanged lines hidden ---
106 { 0, "", "" },
107};
108
109#define SIZE (LASTTOKEN - FIRSTTOKEN + 1)
110const char *table[SIZE];
111char *names[SIZE];
112
113int main(int argc, char *argv[])

--- 55 unchanged lines hidden ---