diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:18:56 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | aa5c3ccd0b269057c1118ce040319072b28a841f (patch) | |
tree | 3d8ba67e72ea5aa696efb87127f717a8f3ab2623 /src/mountinfo/mountinfo.c | |
parent | d795ea183f72846384c7873939939ea32b9011b1 (diff) |
mountinfo: missing includes from IWYU
Diffstat (limited to 'src/mountinfo/mountinfo.c')
-rw-r--r-- | src/mountinfo/mountinfo.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mountinfo/mountinfo.c b/src/mountinfo/mountinfo.c index c55b12ab..82018233 100644 --- a/src/mountinfo/mountinfo.c +++ b/src/mountinfo/mountinfo.c @@ -15,15 +15,14 @@ * except according to the terms contained in the LICENSE file. */ -#include <sys/types.h> -#include <sys/param.h> - #if defined(__DragonFly__) || defined(__FreeBSD__) # include <sys/ucred.h> # include <sys/mount.h> + # define F_FLAGS f_flags #elif defined(BSD) && !defined(__GNU__) # include <sys/statvfs.h> + # define statfs statvfs # define F_FLAGS f_flag #elif defined(__linux__) || (defined(__FreeBSD_kernel__) && \ @@ -33,17 +32,19 @@ #include <errno.h> #include <getopt.h> -#include <limits.h> #include <regex.h> +#include <stddef.h> #include <stdio.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #include "einfo.h" #include "queue.h" #include "rc.h" -#include "misc.h" #include "_usage.h" +#include "helpers.h" const char *applet = NULL; const char *procmounts = "/proc/mounts"; |