From b386b10fdd483f0a7881e380d3ff7e233a09c424 Mon Sep 17 00:00:00 2001 From: Matt Fleming Date: Fri, 30 Mar 2012 13:22:40 +0100 Subject: [PATCH] sys/fileclose.c: Fix build warning from missing prototype MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Include fs.h to avoid the following warning, sys/fileclose.c: In function ‘__file_close’: sys/fileclose.c:42:2: warning: implicit declaration of function ‘close_file’ Signed-off-by: Matt Fleming --- com32/lib/sys/fileclose.c | 1 + 1 file changed, 1 insertion(+) diff --git a/com32/lib/sys/fileclose.c b/com32/lib/sys/fileclose.c index 26e1508..699dbe3 100644 --- a/com32/lib/sys/fileclose.c +++ b/com32/lib/sys/fileclose.c @@ -34,6 +34,7 @@ #include #include #include +#include #include "file.h" int __file_close(struct file_info *fp) -- 2.7.4