diff options
author | dzwdz | 2022-12-25 21:47:23 +0100 |
---|---|---|
committer | dzwdz | 2022-12-25 21:47:23 +0100 |
commit | f6bc1ccf2462642383d1644321a101e62105c2a7 (patch) | |
tree | 98b78da8a9f155adaaffdb92235572c222c97371 /src/user/app/tmpfs | |
parent | fb6f520e0b65c08d0c01eee75e5216540786ac6b (diff) |
user/lib: reorganize a few header files
Diffstat (limited to 'src/user/app/tmpfs')
-rw-r--r-- | src/user/app/tmpfs/tmpfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/user/app/tmpfs/tmpfs.c b/src/user/app/tmpfs/tmpfs.c index 7614d92..3b4d7d5 100644 --- a/src/user/app/tmpfs/tmpfs.c +++ b/src/user/app/tmpfs/tmpfs.c @@ -1,14 +1,14 @@ +#include <camellia/compat.h> #include <camellia/flags.h> +#include <camellia/fs/dir.h> #include <camellia/fsutil.h> #include <camellia/syscalls.h> #include <errno.h> -#include <shared/mem.h> #include <stdbool.h> #include <stddef.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> -#include <user/lib/compat.h> -#include <user/lib/fs/dir.h> struct node { const char *name; |