diff options
Diffstat (limited to 'api/posix/unistd.h')
| -rw-r--r-- | api/posix/unistd.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/api/posix/unistd.h b/api/posix/unistd.h new file mode 100644 index 0000000..6bd69f5 --- /dev/null +++ b/api/posix/unistd.h @@ -0,0 +1,11 @@ +#pragma once + +#define STDIN_FILENO 0 +#define STDOUT_FILENO 1 +#define STDERR_FILENO 2 + +enum seek_whence +{ + SEEK_SET +}; + |
