aboutsummaryrefslogtreecommitdiff
path: root/ugly.h
diff options
context:
space:
mode:
Diffstat (limited to 'ugly.h')
-rw-r--r--ugly.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/ugly.h b/ugly.h
deleted file mode 100644
index 3938f639..00000000
--- a/ugly.h
+++ /dev/null
@@ -1,36 +0,0 @@
1/*
2** ugly.h
3** TecCGraf - PUC-Rio
4** $Id: $
5*/
6
7#ifndef ugly_h
8#define ugly_h
9
10/* This enum must have the same order of the array 'reserved' in lex.c */
11
12enum {
13 U_and=128,
14 U_do,
15 U_else,
16 U_elseif,
17 U_end,
18 U_function,
19 U_if,
20 U_local,
21 U_nil,
22 U_not,
23 U_or,
24 U_repeat,
25 U_return,
26 U_then,
27 U_until,
28 U_while,
29 U_eq = '='+128,
30 U_le = '<'+128,
31 U_ge = '>'+128,
32 U_ne = '~'+128,
33 U_sc = '.'+128
34};
35
36#endif