|
From: Peep P. <so...@us...> - 2004-07-24 17:50:18
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31057 Modified Files: object.h Log Message: MOD_VARARGS define Index: object.h =================================================================== RCS file: /cvsroot/agd/server/src/object.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- object.h 21 Jul 2004 11:55:58 -0000 1.11 +++ object.h 24 Jul 2004 17:50:03 -0000 1.12 @@ -1,6 +1,9 @@ #ifndef _OBJECT_H #define _OBJECT_H +/* 0x80 is for T_ARRAY */ +#define MOD_VARARGS 0x100 + typedef struct { int type; @@ -10,7 +13,7 @@ int *code; int codelen; - unsigned int lineno; +/* unsigned int lineno;*/ unsigned *line_numbers; } function_t; |