DEVTOOLS: Fix gcc compilation of create_titanic

This commit is contained in:
Paul Gilbert 2017-08-12 20:47:16 -04:00
parent 4a945162c5
commit 94f6614281
2 changed files with 1 additions and 4 deletions

View file

@ -29,10 +29,6 @@
#undef main #undef main
#endif // main #endif // main
#ifndef USE_ZLIB
#error "Project should have USE_ZLIB defined"
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View file

@ -22,6 +22,7 @@
// Disable symbol overrides so that we can use zlib.h // Disable symbol overrides so that we can use zlib.h
#define FORBIDDEN_SYMBOL_ALLOW_ALL #define FORBIDDEN_SYMBOL_ALLOW_ALL
#define USE_ZLIB
#include "zlib.h" #include "zlib.h"
#include "common/ptr.h" #include "common/ptr.h"