In the boot blocks, this would result in various 64-bit instruction being
used, which might result in undesirable bloat in legacy boot loaders, so
add a workaround for the _STANDALONE case to still fall back to long
instead of long long.
with/ok deraadt, ok millert
#ifdef _KERNEL
# define Z_HAVE_UNISTD_H
#endif
+#ifdef _STANDALONE
+# define z_off_t long
+#endif
#ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */
# define Z_HAVE_UNISTD_H
#endif
#ifndef z_off_t
-# define z_off_t long
+# define z_off_t long long
#endif
#if !defined(_WIN32) && defined(Z_LARGE64)