diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-08 17:20:20 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-08 17:20:20 -0400 |
commit | cfa50ff63d0144b2e3c5ad89994c79ba5b691ebf (patch) | |
tree | 9b13b70e735cc4680cd775c9deee3af8f8ee793a /lib/libc/include | |
parent | 4269a34c1c0592dfde8f6e1fb6d2e94d19ba7a11 (diff) |
lib: libc: Add POSIX unlink() stub
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/libc/include')
-rw-r--r-- | lib/libc/include/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/include/unistd.h b/lib/libc/include/unistd.h index 8c6b7c8..3632884 100644 --- a/lib/libc/include/unistd.h +++ b/lib/libc/include/unistd.h @@ -58,7 +58,9 @@ ssize_t write(int fd, const void *buf, size_t count); int close(int fd); int access(const char *path, int mode); + off_t lseek(int fildes, off_t offset, int whence); +int unlink(const char *path); pid_t getpid(void); pid_t getppid(void); |