diff options
Diffstat (limited to 'src/qcommon/unzip.c')
-rw-r--r-- | src/qcommon/unzip.c | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/src/qcommon/unzip.c b/src/qcommon/unzip.c index d0b3d2a5..b307e98d 100644 --- a/src/qcommon/unzip.c +++ b/src/qcommon/unzip.c @@ -35,23 +35,10 @@ woven in by Terry Thorsen 1/2003. */ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> +#include "../qcommon/q_shared.h" +#include "../qcommon/qcommon.h" #include "unzip.h" -#ifdef STDC -# include <stddef.h> -# include <string.h> -# include <stdlib.h> -#endif -#ifdef NO_ERRNO_H - extern int errno; -#else -# include <errno.h> -#endif - - #ifndef local # define local static #endif @@ -74,10 +61,10 @@ woven in by Terry Thorsen 1/2003. #endif #ifndef ALLOC -# define ALLOC(size) (malloc(size)) +# define ALLOC(size) (Z_Malloc(size)) #endif #ifndef TRYFREE -# define TRYFREE(p) {if (p) free(p);} +# define TRYFREE(p) {if (p) Z_Free(p);} #endif #define SIZECENTRALDIRITEM (0x2e) |