diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2013-03-24 22:30:40 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2013-03-24 22:30:40 -0700 |
commit | f81b79c55998a0b7551c129ac379df5839d0949b (patch) | |
tree | 4d1beca811b026edd8e5ddc835f1bffc0e1deb07 | |
parent | c661c374e8df43365738daa09f4390d61bc57f08 (diff) | |
download | zlib-f81b79c55998a0b7551c129ac379df5839d0949b.tar.gz zlib-f81b79c55998a0b7551c129ac379df5839d0949b.tar.bz2 zlib-f81b79c55998a0b7551c129ac379df5839d0949b.zip |
Line length cleanup.
-rw-r--r-- | inffast.c | 2 | ||||
-rw-r--r-- | zutil.h | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -70,7 +70,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */ | |||
70 | { | 70 | { |
71 | struct inflate_state FAR *state; | 71 | struct inflate_state FAR *state; |
72 | z_const unsigned char FAR *in; /* local strm->next_in */ | 72 | z_const unsigned char FAR *in; /* local strm->next_in */ |
73 | z_const unsigned char FAR *last; /* while in < last, enough input available */ | 73 | z_const unsigned char FAR *last; /* have enough input while in < last */ |
74 | unsigned char FAR *out; /* local strm->next_out */ | 74 | unsigned char FAR *out; /* local strm->next_out */ |
75 | unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ | 75 | unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ |
76 | unsigned char FAR *end; /* while out < end, enough space available */ | 76 | unsigned char FAR *end; /* while out < end, enough space available */ |
@@ -168,7 +168,8 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ | |||
168 | #endif | 168 | #endif |
169 | 169 | ||
170 | /* provide prototypes for these when building zlib without LFS */ | 170 | /* provide prototypes for these when building zlib without LFS */ |
171 | #if !defined(_WIN32) && (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0) | 171 | #if !defined(_WIN32) && \ |
172 | (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0) | ||
172 | ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); | 173 | ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); |
173 | ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); | 174 | ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); |
174 | #endif | 175 | #endif |