From 84de3b9d45a4da7f1a406223e262c014ab398a1e Mon Sep 17 00:00:00 2001 From: Roman Leshchinskiy Date: Tue, 15 Jan 2008 05:18:44 +0000 Subject: [PATCH] FIX BUILD (Solaris): include fcntl.h for file operations --- rts/posix/OSMem.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rts/posix/OSMem.c b/rts/posix/OSMem.c index 9b71d1c..66f6309 100644 --- a/rts/posix/OSMem.c +++ b/rts/posix/OSMem.c @@ -25,6 +25,9 @@ #ifdef HAVE_STRING_H #include #endif +#ifdef HAVE_FCNTL_H +#include +#endif #include -- 1.7.10.4