aboutsummaryrefslogtreecommitdiffstats
path: root/src/kernel/vfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/vfs.h')
-rw-r--r--src/kernel/vfs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kernel/vfs.h b/src/kernel/vfs.h
index c9c9179..29763a5 100644
--- a/src/kernel/vfs.h
+++ b/src/kernel/vfs.h
@@ -47,5 +47,6 @@ int vfs_mount(vfs_volume_funcs *funcs, uint32_t flags);
int vfs_open(const char *path, uint32_t flags);
int vfs_close(int fd);
uint32_t vfs_read(int fd, uint32_t count, uint8_t *buffer);
+uint32_t vfs_write(int fd, uint32_t count, const uint8_t *buffer);
#endif // VFS_H_