diff options
author | Marvin Borner | 2020-05-02 18:17:35 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-02 18:17:35 +0200 |
commit | e8f1c287a63f0f71fe463f7271834538b45f8c05 (patch) | |
tree | 6eebab2d27e610c8eeb130ddfd6a7f858ece411a /src/userspace/libc | |
parent | aa8a8811818331cf511681327e3ba95e456f0d33 (diff) |
Some work in the vfs
Diffstat (limited to 'src/userspace/libc')
-rw-r--r-- | src/userspace/libc/unistd.h | 4 | ||||
-rw-r--r-- | src/userspace/libc/unistd/read.c | 2 | ||||
-rw-r--r-- | src/userspace/libc/unistd/write.c | 2 |
3 files changed, 4 insertions, 4 deletions
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 <stdint.h> #include <syscall.h> -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 <stdint.h> #include <syscall.h> -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 |