From 9667f7c8fd7260091c89a7108bea076e981acd6a Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Mon, 30 Mar 2015 23:25:05 +0200 Subject: [PATCH] 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 --- Standalone/fuzix_fs.h | 2 -- Standalone/xfs1a.c | 1 + Standalone/xfs1b.c | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) 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" -- 2.34.1