From 3f13fd485ece3651d02233cd43f18264f1c53235 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Thu, 10 Oct 2013 16:42:28 +0900 Subject: [PATCH] Adding missing (c-system-include "sys/file.h") for flock constants. Fixes issue #199. --- lib/chibi/filesystem.stub | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/chibi/filesystem.stub b/lib/chibi/filesystem.stub index 9f31d5d5..cd4efaa2 100644 --- a/lib/chibi/filesystem.stub +++ b/lib/chibi/filesystem.stub @@ -1,7 +1,8 @@ ;; filesystem.stub -- filesystem bindings -;; Copyright (c) 2009-2012 Alex Shinn. All rights reserved. +;; Copyright (c) 2009-2013 Alex Shinn. All rights reserved. ;; BSD-style license: http://synthcode.com/license.txt +(c-system-include "sys/file.h") (c-system-include "sys/types.h") (c-system-include "unistd.h") (c-system-include "dirent.h")