summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2013-03-24 22:30:40 -0700
committerMark Adler <madler@alumni.caltech.edu>2013-03-24 22:30:40 -0700
commitf81b79c55998a0b7551c129ac379df5839d0949b (patch)
tree4d1beca811b026edd8e5ddc835f1bffc0e1deb07
parentc661c374e8df43365738daa09f4390d61bc57f08 (diff)
downloadzlib-f81b79c55998a0b7551c129ac379df5839d0949b.tar.gz
zlib-f81b79c55998a0b7551c129ac379df5839d0949b.tar.bz2
zlib-f81b79c55998a0b7551c129ac379df5839d0949b.zip
Line length cleanup.
-rw-r--r--inffast.c2
-rw-r--r--zutil.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/inffast.c b/inffast.c
index 0d78f23..dbb275f 100644
--- a/inffast.c
+++ b/inffast.c
@@ -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 */
diff --git a/zutil.h b/zutil.h
index 0f02cbe..7340361 100644
--- a/zutil.h
+++ b/zutil.h
@@ -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