Skip to content

Commit

Permalink
Make z_off_t 64 bits by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Mar 31, 2024
1 parent 4f8a17e commit c5e87dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion zconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ typedef uLong FAR uLongf;
#endif

#ifndef z_off_t
# define z_off_t long
# define z_off_t long long
#endif

#if !defined(_WIN32) && defined(Z_LARGE64)
Expand Down
2 changes: 1 addition & 1 deletion zconf.h.cmakein
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ typedef uLong FAR uLongf;
#endif

#ifndef z_off_t
# define z_off_t long
# define z_off_t long long
#endif

#if !defined(_WIN32) && defined(Z_LARGE64)
Expand Down
2 changes: 1 addition & 1 deletion zconf.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ typedef uLong FAR uLongf;
#endif

#ifndef z_off_t
# define z_off_t long
# define z_off_t long long
#endif

#if !defined(_WIN32) && defined(Z_LARGE64)
Expand Down

0 comments on commit c5e87dc

Please sign in to comment.