aboutsummaryrefslogtreecommitdiff
path: root/gzlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'gzlib.c')
-rw-r--r--gzlib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gzlib.c b/gzlib.c
index 57f79bb..7b31d24 100644
--- a/gzlib.c
+++ b/gzlib.c
@@ -5,11 +5,15 @@
5 5
6#include "gzguts.h" 6#include "gzguts.h"
7 7
8#if defined(_WIN32)
9# define LSEEK _lseeki64
10#else
8#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 11#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
9# define LSEEK lseek64 12# define LSEEK lseek64
10#else 13#else
11# define LSEEK lseek 14# define LSEEK lseek
12#endif 15#endif
16#endif
13 17
14/* Local functions */ 18/* Local functions */
15local void gz_reset OF((gz_statep)); 19local void gz_reset OF((gz_statep));