diff options
Diffstat (limited to 'src/kernel/fs/ext2.h')
-rw-r--r-- | src/kernel/fs/ext2.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/fs/ext2.h b/src/kernel/fs/ext2.h index e5e0f1c..f3ea4a0 100644 --- a/src/kernel/fs/ext2.h +++ b/src/kernel/fs/ext2.h @@ -4,6 +4,7 @@ #include <stdint.h> #include <stddef.h> #include <stdbool.h> +#include <kernel/fs/vfs.h> #define ROOT_INODE 2 @@ -137,4 +138,6 @@ bool ext2_next_dirent(struct ext2_file *file, struct ext2_dirent *dir); uint32_t ext2_find_in_dir(uint32_t dir_inode, const char *name); uint32_t ext2_look_up_path(char *path); -#endif
\ No newline at end of file +void ext2_mount(struct fs_node *mountpoint); + +#endif |