From: Peep P. <so...@us...> - 2004-07-21 11:56:08
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8447 Modified Files: object.h Log Message: Line number information. Index: object.h =================================================================== RCS file: /cvsroot/agd/server/src/object.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- object.h 8 Jun 2004 20:44:53 -0000 1.10 +++ object.h 21 Jul 2004 11:55:58 -0000 1.11 @@ -11,12 +11,13 @@ int codelen; unsigned int lineno; + unsigned *line_numbers; } function_t; typedef struct { - function_t **functions; /* This shouldn't be an array to pointers. */ + function_t **functions; int numfunc; - char **fun_table; /* This could be a hash table. */ + char **fun_table; int num_str; char **str_tbl; |