diff options
author | Marvin Borner | 2020-06-17 18:31:46 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-17 18:31:46 +0200 |
commit | eed77bd2970a00d1394ed027ceca5b646e4671ce (patch) | |
tree | c44643d98aed2b6818f2b33417c0dea9c5853094 /src/userspace/libc/unistd.h | |
parent | 49dfa1f4021026bf7c4d77817959c8aa24067016 (diff) |
Started rewrite
Diffstat (limited to 'src/userspace/libc/unistd.h')
-rw-r--r-- | src/userspace/libc/unistd.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/userspace/libc/unistd.h b/src/userspace/libc/unistd.h deleted file mode 100644 index efe25c7..0000000 --- a/src/userspace/libc/unistd.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef MELVIX_UNISTD_H -#define MELVIX_UNISTD_H - -#include <stdint.h> - -u32 exec(char *path); - -u32 spawn(char *path); - -u32 get_pid(); - -u32 read(char *path, u32 offset, u32 count, u8 *buf); - -u32 write(char *path, u32 offset, u32 count, u8 *buf); - -// These should be somewhere else ig -u32 wait(u32 *status); -u32 wait_pid(u32 pid, u32 *status, u32 options); - -#endif
\ No newline at end of file |