From: Peep P. <so...@us...> - 2004-03-16 20:22:19
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27662 Modified Files: compile_options.h Log Message: Added DEFAULT_FUNCTION_TYPE for functions with implicit return type. Index: compile_options.h =================================================================== RCS file: /cvsroot/agd/server/src/compile_options.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- compile_options.h 16 Mar 2004 14:07:37 -0000 1.9 +++ compile_options.h 16 Mar 2004 20:12:59 -0000 1.10 @@ -47,4 +47,8 @@ /* Define this if you want to enable debugging for the driver. */ #define DEBUG +/* The type a function has if one isn't specified (e.g. create() { } ) + * Must be one of T_VOID, T_STRING, T_OBJECT or T_INT. */ +#define DEFAULT_FUNCTION_TYPE T_VOID + #endif |