diff options
| author | Ada Christine <adachristine18@gmail.com> | 2024-02-24 15:18:40 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2024-02-24 15:18:40 +0000 |
| commit | 0f3866a4dad84860e135855766c77e5a82737686 (patch) | |
| tree | 97e7bac72928ca6affc362577214646f942ad4d7 /api/posix | |
| parent | a61b9d1c9ee85ec08ff3b8a61e80dc33e71f3472 (diff) | |
bad reloc code silly me
Diffstat (limited to 'api/posix')
| -rw-r--r-- | api/posix/unistd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/api/posix/unistd.h b/api/posix/unistd.h index 7487001..4964689 100644 --- a/api/posix/unistd.h +++ b/api/posix/unistd.h @@ -14,5 +14,8 @@ enum seek_whence SEEK_END }; +ssize_t read(int fd, void *buf, size_t length); ssize_t write(int fd, const void *buf, size_t length); +off_t lseek(int fd, off_t position, int whence); +int close(int fd); |
