diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-11 13:36:14 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-11 13:36:14 +0200 |
commit | d146ab8630a3fa9f91560ef24b02850e94e61118 (patch) | |
tree | 83a0c48f05a709b4b4cbc84398ad9c5bcb9924ae | |
parent | 4dc69cb9cd97e9a1f233a0f19ee8035929fa6065 (diff) |
cleanup: mkfs: remove redundant header inclusions
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
-rw-r--r-- | mkfs/mkfs.c | 1 | ||||
-rw-r--r-- | mkfs/mkfs.h | 4 | ||||
-rw-r--r-- | mkfs/options.c | 10 |
3 files changed, 4 insertions, 11 deletions
diff --git a/mkfs/mkfs.c b/mkfs/mkfs.c index 8028919..8317bd2 100644 --- a/mkfs/mkfs.c +++ b/mkfs/mkfs.c @@ -1,6 +1,5 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ #include "mkfs.h" -#include "util.h" static int padd_file(int outfd, sqfs_super_t *super, options_t *opt) { diff --git a/mkfs/mkfs.h b/mkfs/mkfs.h index a743cf7..cea9ebc 100644 --- a/mkfs/mkfs.h +++ b/mkfs/mkfs.h @@ -10,14 +10,18 @@ #include "id_table.h" #include "fstree.h" #include "config.h" +#include "util.h" +#include <getopt.h> #include <assert.h> #include <unistd.h> #include <stdlib.h> #include <string.h> +#include <limits.h> #include <stdio.h> #include <fcntl.h> #include <errno.h> +#include <ctype.h> typedef struct { unsigned int def_uid; diff --git a/mkfs/options.c b/mkfs/options.c index 8ed01ba..e1223ad 100644 --- a/mkfs/options.c +++ b/mkfs/options.c @@ -1,15 +1,5 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ #include "mkfs.h" -#include "util.h" - -#include <stdlib.h> -#include <getopt.h> -#include <unistd.h> -#include <limits.h> -#include <string.h> -#include <fcntl.h> -#include <ctype.h> -#include <stdio.h> static struct option long_opts[] = { { "compressor", required_argument, NULL, 'c' }, |