From: Sami Kerola Date: Tue, 28 Jun 2011 22:23:01 +0000 (+0200) Subject: mkfs: include-what-you-use header check X-Git-Tag: v2.20-rc1~117^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d786727a06617a9be8b47e66c5a5aebc927bba2a;p=thirdparty%2Futil-linux.git mkfs: include-what-you-use header check Two headers added #include // for CHAR_MAX #include // for exit, EXIT_SUCCESS, getenv, etc Rest sorted, and nls.h recategorized to be local header. Signed-off-by: Sami Kerola --- diff --git a/disk-utils/mkfs.c b/disk-utils/mkfs.c index a03f4cffb6..389a21c7b0 100644 --- a/disk-utils/mkfs.c +++ b/disk-utils/mkfs.c @@ -14,11 +14,14 @@ */ #include +#include #include -#include +#include #include -#include +#include +#include "c.h" +#include "nls.h" #include "xalloc.h" #ifndef DEFAULT_FSTYPE