aboutsummaryrefslogtreecommitdiff
path: root/lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'lex.c')
-rw-r--r--lex.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/lex.c b/lex.c
index 1c36f7ac..6b40d452 100644
--- a/lex.c
+++ b/lex.c
@@ -1,11 +1,16 @@
1char *rcs_lex = "$Id: lex.c,v 1.1 1993/12/22 21:15:16 roberto Exp celes $"; 1char *rcs_lex = "$Id: lex.c,v 1.2 1993/12/22 21:39:15 celes Exp roberto $";
2/*$Log: lex.c,v $ 2/*$Log: lex.c,v $
3 * Revision 1.2 1993/12/22 21:39:15 celes
4 * Tratamento do token $debug e $nodebug
5 *
3 * Revision 1.1 1993/12/22 21:15:16 roberto 6 * Revision 1.1 1993/12/22 21:15:16 roberto
4 * Initial revision 7 * Initial revision
5 **/ 8 **/
6 9
7#include <ctype.h> 10#include <ctype.h>
8#include <math.h> 11#include <math.h>
12#include <stdlib.h>
13#include <string.h>
9 14
10#include "opcode.h" 15#include "opcode.h"
11#include "hash.h" 16#include "hash.h"