|
From: Andre R. <and...@us...> - 2004-10-23 22:15:57
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32345/Frontier/Common/source Modified Files: db.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: db.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/db.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** db.c 17 Oct 2004 12:19:10 -0000 1.2 --- db.c 23 Oct 2004 22:15:48 -0000 1.3 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "memory.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "memory.h" *************** *** 108,113 **** #pragma message ("*********************** DATABASE_DEBUG is ON: output to dblog.txt ***********************") - #include <stdio.h> - #include <string.h> #define dberror(num) debug_dberror(num, __LINE__, true) --- 103,106 ---- |