From: tb Date: Tue, 9 Jul 2024 10:48:31 +0000 (+0000) Subject: Let z_off_t fall back to long long instead of only long X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1179cdcefc5f6e8dd0941d92b8bb8bc1ceb77ccd;p=openbsd Let z_off_t fall back to long long instead of only long This is a noop on OpenBSD in userland ok deraadt millert --- diff --git a/lib/libz/zconf.h b/lib/libz/zconf.h index 7c289a5009f..99066348c9e 100644 --- a/lib/libz/zconf.h +++ b/lib/libz/zconf.h @@ -504,7 +504,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)