summaryrefslogtreecommitdiff
path: root/sys/lib/libz/zconf.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-12-16 23:58:31 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-12-16 23:58:31 +0000
commitea064523b82a76cc6a1a61843793695ab6227472 (patch)
treea0eea1b42577b3dc5a559a3d0f96302ed4bef21e /sys/lib/libz/zconf.h
parent119ff8aeb381bd2409167fb7eeaf9ea9e5b43fa9 (diff)
Add #ifdef SMALL and #ifdef SLOW and include sys/unistd.h instead of unistd.h
Diffstat (limited to 'sys/lib/libz/zconf.h')
-rw-r--r--sys/lib/libz/zconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libz/zconf.h b/sys/lib/libz/zconf.h
index 576ce053ee4..49beebb1c8e 100644
--- a/sys/lib/libz/zconf.h
+++ b/sys/lib/libz/zconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: zconf.h,v 1.7 2003/12/16 23:57:48 millert Exp $ */
+/* $OpenBSD: zconf.h,v 1.8 2003/12/16 23:58:30 millert Exp $ */
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-2003 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
@@ -275,8 +275,8 @@ typedef uLong FAR uLongf;
typedef Byte *voidp;
#endif
-#include <sys/types.h> /* for off_t */
-#include <unistd.h> /* for SEEK_* and off_t */
+#include <sys/types.h> /* for off_t */
+#include <sys/unistd.h> /* for SEEK_* and off_t */
#define z_off_t off_t
#ifndef SEEK_SET
# define SEEK_SET 0 /* Seek from beginning of file. */