|
From: Andre R. <and...@us...> - 2004-10-23 22:29:47
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3734/Frontier/Common/source Modified Files: langpython.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: langpython.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/langpython.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** langpython.c 9 Oct 2004 07:34:43 -0000 1.1 --- langpython.c 23 Oct 2004 22:29:38 -0000 1.2 *************** *** 24,27 **** --- 24,30 ---- ******************************************************************************/ + #include "frontier.h" + #include "standard.h" + #define xxxFRONTIER_PYTHON 1 *************** *** 33,47 **** #ifdef MACVERSION - #include <AppleEvents.h> #include <iac.h> - #include <standard.h> #endif - #ifdef WIN95VERSION - #include "standard.h" - #endif - - #include <ctype.h> - #include <string.h> #include "error.h" #include "file.h" --- 36,42 ---- |