mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Warning fixes in our zlib fork
This commit is contained in:
parent
5658a3ea48
commit
beac615480
3 changed files with 12 additions and 0 deletions
|
@ -5,6 +5,10 @@
|
|||
|
||||
#include "gzguts.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32) && !defined(__BORLANDC__)
|
||||
# define LSEEK _lseeki64
|
||||
#else
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
|
||||
#include "gzguts.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
/* Local functions */
|
||||
local int gz_load OF((gz_statep, unsigned char *, unsigned, unsigned *));
|
||||
local int gz_avail OF((gz_statep));
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
|
||||
#include "gzguts.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
/* Local functions */
|
||||
local int gz_init OF((gz_statep));
|
||||
local int gz_comp OF((gz_statep, int));
|
||||
|
|
Loading…
Add table
Reference in a new issue