diff options
| author | Ada Christine <adachristine18@gmail.com> | 2025-02-02 15:20:52 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2025-02-02 15:20:52 +0000 |
| commit | 9bc0738101979b626233ee226ece3cc8cae053ec (patch) | |
| tree | 33f608f59a3cfc062db0363c208f3b0ea05c62e3 /api/posix/unistd.h | |
| parent | 3d806c9e2fcb6226915982b6514919a3b9dac4dc (diff) | |
full flow implemented
Diffstat (limited to 'api/posix/unistd.h')
| -rw-r--r-- | api/posix/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/api/posix/unistd.h b/api/posix/unistd.h index 4964689..6139660 100644 --- a/api/posix/unistd.h +++ b/api/posix/unistd.h @@ -2,6 +2,7 @@ #include <stddef.h> #include "sys/types.h" +#include <stdnoreturn.h> #define STDIN_FILENO 0 #define STDOUT_FILENO 1 @@ -18,4 +19,5 @@ 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); +noreturn void _exit(int status); |
