From aa8a8811818331cf511681327e3ba95e456f0d33 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 2 May 2020 15:44:11 +0200 Subject: Added many syscalls to get better POSIX compliance --- src/userspace/libc/unistd.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/userspace/libc/unistd.h (limited to 'src/userspace/libc/unistd.h') diff --git a/src/userspace/libc/unistd.h b/src/userspace/libc/unistd.h new file mode 100644 index 0000000..e8b97be --- /dev/null +++ b/src/userspace/libc/unistd.h @@ -0,0 +1,18 @@ +#ifndef MELVIX_UNISTD_H +#define MELVIX_UNISTD_H + +#include + +u32 exec(char *path); + +void exit(u32 code); + +u32 fork(); + +u32 get_pid(); + +u32 sys_read(char *path, u32 offset, u32 count, char *buf); + +u32 sys_write(char *path, u32 offset, u32 count, char *buf); + +#endif \ No newline at end of file -- cgit v1.2.3