From e8f1c287a63f0f71fe463f7271834538b45f8c05 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 2 May 2020 18:17:35 +0200 Subject: Some work in the vfs --- src/userspace/libc/unistd.h | 4 ++-- src/userspace/libc/unistd/read.c | 2 +- src/userspace/libc/unistd/write.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/userspace/libc') diff --git a/src/userspace/libc/unistd.h b/src/userspace/libc/unistd.h index e8b97be..f9644f1 100644 --- a/src/userspace/libc/unistd.h +++ b/src/userspace/libc/unistd.h @@ -11,8 +11,8 @@ u32 fork(); u32 get_pid(); -u32 sys_read(char *path, u32 offset, u32 count, char *buf); +u32 read(char *path, u32 offset, u32 count, char *buf); -u32 sys_write(char *path, u32 offset, u32 count, char *buf); +u32 write(char *path, u32 offset, u32 count, char *buf); #endif \ No newline at end of file diff --git a/src/userspace/libc/unistd/read.c b/src/userspace/libc/unistd/read.c index c01baa7..0f8b914 100644 --- a/src/userspace/libc/unistd/read.c +++ b/src/userspace/libc/unistd/read.c @@ -1,7 +1,7 @@ #include #include -u32 sys_read(char *path, u32 offset, u32 count, char *buf) +u32 read(char *path, u32 offset, u32 count, char *buf) { return syscall_read(path, offset, count, buf); } \ No newline at end of file diff --git a/src/userspace/libc/unistd/write.c b/src/userspace/libc/unistd/write.c index c3eec3d..7cae9cd 100644 --- a/src/userspace/libc/unistd/write.c +++ b/src/userspace/libc/unistd/write.c @@ -1,7 +1,7 @@ #include #include -u32 sys_write(char *path, u32 offset, u32 count, char *buf) +u32 write(char *path, u32 offset, u32 count, char *buf) { return syscall_write(path, offset, count, buf); } \ No newline at end of file -- cgit v1.2.3