cfa4871f5f
Resolves build issue on FreeBSD as off_t is defined in sys/mman.h Reviewed by: wiz@
15 lines
312 B
C
15 lines
312 B
C
$NetBSD: patch-src_util.h,v 1.1 2015/03/05 21:29:20 sevan Exp $
|
|
|
|
--- src/util.h.orig 2015-03-05 19:13:14.116234563 +0000
|
|
+++ src/util.h
|
|
@@ -30,6 +30,10 @@
|
|
typedef enum { false, true } bool;
|
|
#endif
|
|
|
|
+#ifdef HAVE_SYS_MMAN_H
|
|
+#include <sys/mman.h>
|
|
+#endif
|
|
+
|
|
typedef enum {
|
|
FILE_NOEXIST,
|
|
FILE_REGULAR,
|