Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: third_party/zlib/zconf.h

Issue 13564004: Complete update of zlib from 1.2.3 to 1.2.5. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: actually fix patch Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/zlib/gzwrite.c ('k') | third_party/zlib/zlib.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 */
OLDNEW
« no previous file with comments | « third_party/zlib/gzwrite.c ('k') | third_party/zlib/zlib.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698