about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/malloc-machine.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/malloc-machine.h')
-rw-r--r--sysdeps/mach/hurd/malloc-machine.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/malloc-machine.h b/sysdeps/mach/hurd/malloc-machine.h
index 56ae26db62..4a8bd16e6c 100644
--- a/sysdeps/mach/hurd/malloc-machine.h
+++ b/sysdeps/mach/hurd/malloc-machine.h
@@ -63,8 +63,11 @@ __libc_tsd_define (static, void *, MALLOC)	/* declaration/common definition */
 #define tsd_getspecific(key, vptr)	((vptr) = __libc_tsd_get (void *, MALLOC))
 
 /* madvise is a stub on Hurd, so don't bother calling it.  */
+
+#include <sys/mman.h>
+
 #undef	madvise
-#define madvise(addr, len, advice)	((void) ((addr), (len), (advice)))
+#define madvise(addr, len, advice)	((void) (addr), (void) (len), (void) (advice))
 
 #include <sysdeps/generic/malloc-machine.h>