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/rm-rf.c | |
parent | bca27e1729b496081b0fa4e2754f5fcdcc0efce5 (diff) |
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/rm-rf.c')
-rw-r--r-- | src/basic/rm-rf.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/basic/rm-rf.c b/src/basic/rm-rf.c index 8ec7dd75ee..0408e22777 100644 --- a/src/basic/rm-rf.c +++ b/src/basic/rm-rf.c @@ -19,14 +19,24 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <dirent.h> +#include <errno.h> +#include <fcntl.h> +#include <stdbool.h> +#include <stddef.h> +#include <sys/stat.h> +#include <sys/statfs.h> +#include <unistd.h> + #include "btrfs-util.h" #include "fd-util.h" #include "mount-util.h" #include "path-util.h" #include "rm-rf.h" +#include "log.h" +#include "macro.h" #include "stat-util.h" #include "string-util.h" -#include "util.h" int rm_rf_children(int fd, RemoveFlags flags, struct stat *root_dev) { _cleanup_closedir_ DIR *d = NULL; |