From: Tormod Volden Date: Mon, 30 Mar 2015 21:25:05 +0000 (+0200) Subject: Standalone: Do not include stdio.h in fuzix_fs.h X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=9667f7c8fd7260091c89a7108bea076e981acd6a;p=FUZIX.git Standalone: Do not include stdio.h in fuzix_fs.h xfs1a and xfs1b need a NULL definition, but they can pick that from stddef.h. Signed-off-by: Tormod Volden --- diff --git a/Standalone/fuzix_fs.h b/Standalone/fuzix_fs.h index fabe0992..9c44c81b 100644 --- a/Standalone/fuzix_fs.h +++ b/Standalone/fuzix_fs.h @@ -1,7 +1,5 @@ #define __UZIFS_DOT_H__ -#include - #define ROOTDEV 0 #define ROOTINODE 1 #define SMOUNTED 12742 /* Magic number to specify mounted filesystem */ diff --git a/Standalone/xfs1a.c b/Standalone/xfs1a.c index f8e80132..9073f334 100644 --- a/Standalone/xfs1a.c +++ b/Standalone/xfs1a.c @@ -6,6 +6,7 @@ */ /*LINTLIBRARY*/ +#include #include #include #include "fuzix_fs.h" diff --git a/Standalone/xfs1b.c b/Standalone/xfs1b.c index 09d79405..1beebe2b 100644 --- a/Standalone/xfs1b.c +++ b/Standalone/xfs1b.c @@ -3,6 +3,7 @@ ***************************************************/ /*LINTLIBRARY*/ +#include #include #include #include "fuzix_fs.h"