Simplify build dependencies for iniparser to work around a problem in MSVC compilation reported by i-NoD.

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@7939 4a71c877-e1ca-e34f-864e-861f7616d084
master
Per Inge Mathisen 2009-08-08 12:27:36 +00:00 committed by Git SVN Gateway
parent 48ab59bb62
commit ba36ac6cfd
1 changed files with 5 additions and 3 deletions

View File

@ -15,11 +15,13 @@
*/ */
/*---------------------------- Includes ------------------------------------*/ /*---------------------------- Includes ------------------------------------*/
#include <ctype.h> #include <ctype.h>
#include <stdbool.h> #include <physfs.h>
#include <stdint.h>
#include "lib/framework/wzglobal.h" #include "lib/framework/wzglobal.h"
#include "lib/framework/physfs_ext.h" #include "lib/framework/types.h"
// Declaring it here instead ofincluding lib/framework/physfs_ext.h to ease build dependencies
bool PHYSFS_printf(PHYSFS_file *file, const char *format, ...) WZ_DECL_FORMAT(printf, 2, 3);
#include "iniparser.h" #include "iniparser.h"