diff options
author | Anton Kling <anton@kling.gg> | 2024-06-26 21:17:06 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-26 21:20:47 +0200 |
commit | edf86881446717b633dbb2aaac7b25dbc4630c3f (patch) | |
tree | 5270af1ffcbd83ee4cd3809fd6cf525780d1f431 /kernel/fs/tmpfs.c | |
parent | 58423a4cf62ee848fac5ee6755fa459c7db5acb2 (diff) |
Kernel: Code cleanup
Diffstat (limited to 'kernel/fs/tmpfs.c')
-rw-r--r-- | kernel/fs/tmpfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/fs/tmpfs.c b/kernel/fs/tmpfs.c index cd48b93..8269364 100644 --- a/kernel/fs/tmpfs.c +++ b/kernel/fs/tmpfs.c @@ -1,5 +1,6 @@ #include <assert.h> #include <errno.h> +#include <fcntl.h> #include <fs/fifo.h> #include <fs/tmpfs.h> #include <sched/scheduler.h> |