| OLD | NEW |
| 1 /* zconf.h -- configuration of the zlib compression library | 1 /* zconf.h -- configuration of the zlib compression library |
| 2 * Copyright (C) 1995-2010 Jean-loup Gailly. | 2 * Copyright (C) 1995-2010 Jean-loup Gailly. |
| 3 * For conditions of distribution and use, see copyright notice in zlib.h | 3 * For conditions of distribution and use, see copyright notice in zlib.h |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 /* @(#) $Id$ */ | 6 /* @(#) $Id$ */ |
| 7 | 7 |
| 8 #ifndef ZCONF_H | 8 #ifndef ZCONF_H |
| 9 #define ZCONF_H | 9 #define ZCONF_H |
| 10 | 10 |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 #ifdef STDC | 352 #ifdef STDC |
| 353 typedef void const *voidpc; | 353 typedef void const *voidpc; |
| 354 typedef void FAR *voidpf; | 354 typedef void FAR *voidpf; |
| 355 typedef void *voidp; | 355 typedef void *voidp; |
| 356 #else | 356 #else |
| 357 typedef Byte const *voidpc; | 357 typedef Byte const *voidpc; |
| 358 typedef Byte FAR *voidpf; | 358 typedef Byte FAR *voidpf; |
| 359 typedef Byte *voidp; | 359 typedef Byte *voidp; |
| 360 #endif | 360 #endif |
| 361 | 361 |
| 362 #ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ | 362 #if !defined(_WIN32) |
| 363 # define Z_HAVE_UNISTD_H | 363 # define Z_HAVE_UNISTD_H |
| 364 #endif | 364 #endif |
| 365 | 365 |
| 366 #ifdef STDC | 366 #ifdef STDC |
| 367 # include <sys/types.h> /* for off_t */ | 367 # include <sys/types.h> /* for off_t */ |
| 368 #endif | 368 #endif |
| 369 | 369 |
| 370 /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and | 370 /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and |
| 371 * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even | 371 * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even |
| 372 * though the former does not conform to the LFS document), but considering | 372 * though the former does not conform to the LFS document), but considering |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 #pragma map(inflateEnd,"INEND") | 422 #pragma map(inflateEnd,"INEND") |
| 423 #pragma map(inflateSync,"INSY") | 423 #pragma map(inflateSync,"INSY") |
| 424 #pragma map(inflateSetDictionary,"INSEDI") | 424 #pragma map(inflateSetDictionary,"INSEDI") |
| 425 #pragma map(compressBound,"CMBND") | 425 #pragma map(compressBound,"CMBND") |
| 426 #pragma map(inflate_table,"INTABL") | 426 #pragma map(inflate_table,"INTABL") |
| 427 #pragma map(inflate_fast,"INFA") | 427 #pragma map(inflate_fast,"INFA") |
| 428 #pragma map(inflate_copyright,"INCOPY") | 428 #pragma map(inflate_copyright,"INCOPY") |
| 429 #endif | 429 #endif |
| 430 | 430 |
| 431 #endif /* ZCONF_H */ | 431 #endif /* ZCONF_H */ |
| OLD | NEW |