diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-11-30 21:43:37 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-11-30 21:51:03 +0100 |
commit | 11c3a36649e5e5e77db499c92f3cdcbd619efd3a (patch) | |
tree | 9c21bf4fb4cab7ebce7a3d02d9c5083371c9223c /src/basic/mount-util.c | |
parent | bca27e1729b496081b0fa4e2754f5fcdcc0efce5 (diff) | |
download | systemd-11c3a36649e5e5e77db499c92f3cdcbd619efd3a.tar.gz |
basic: include only what we use
This is a cleaned up result of running iwyu but without forward
declarations on src/basic.
Diffstat (limited to 'src/basic/mount-util.c')
-rw-r--r-- | src/basic/mount-util.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/basic/mount-util.c b/src/basic/mount-util.c index 29997b1ce7..aaac2d47bd 100644 --- a/src/basic/mount-util.c +++ b/src/basic/mount-util.c @@ -19,9 +19,13 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <errno.h> +#include <stdlib.h> #include <string.h> #include <sys/mount.h> +#include <sys/stat.h> #include <sys/statvfs.h> +#include <unistd.h> #include "alloc-util.h" #include "escape.h" @@ -31,9 +35,9 @@ #include "parse-util.h" #include "path-util.h" #include "set.h" +#include "hashmap.h" #include "stdio-util.h" #include "string-util.h" -#include "util.h" static int fd_fdinfo_mnt_id(int fd, const char *filename, int flags, int *mnt_id) { char path[strlen("/proc/self/fdinfo/") + DECIMAL_STR_MAX(int)]; |