From 4aad6e46b8b15dc409b80dc720e3372d39023b4b Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Thu, 29 Sep 2011 11:06:48 +0200 Subject: [PATCH] Probably fix compile on win32 (no sys/mman.h). --- src/runtime/coreparse.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/runtime/coreparse.c b/src/runtime/coreparse.c index 85f2aa9..3109b0b 100644 --- a/src/runtime/coreparse.c +++ b/src/runtime/coreparse.c @@ -22,11 +22,14 @@ #include #include #include + +#ifndef LISP_FEATURE_WIN32 #ifdef LISP_FEATURE_LINUX /* For madvise */ # define _BSD_SOURCE #endif #include +#endif #include "sbcl.h" #include "os.h" -- 1.7.10.4