From 425359909f63214843612a1c8508bbb192965027 Mon Sep 17 00:00:00 2001 From: Matt Fleming Date: Fri, 30 Mar 2012 13:09:16 +0100 Subject: [PATCH] sys/open.c: Fix building warnings from missing prototype MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix the following warning by including the appropriate header, sys/open.c: In function ‘open’: sys/open.c:67:5: warning: implicit declaration of function ‘open_file’ Signed-off-by: Matt Fleming --- com32/lib/sys/open.c | 1 + 1 file changed, 1 insertion(+) diff --git a/com32/lib/sys/open.c b/com32/lib/sys/open.c index a0ef159..3221bb6 100644 --- a/com32/lib/sys/open.c +++ b/com32/lib/sys/open.c @@ -30,6 +30,7 @@ #include #include #include +#include #include "file.h" /* -- 2.7.4