mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:47:45 +00:00
Add setvbuf(), setlinebuf(), setbuf().
This commit is contained in:
parent
7cc4caee4f
commit
e48182d91b
6 changed files with 86 additions and 32 deletions
|
@ -50,6 +50,7 @@ int dup2(int old_fd, int new_fd);
|
|||
int pipe(int pipefd[2]);
|
||||
unsigned int alarm(unsigned int seconds);
|
||||
int access(const char* pathname, int mode);
|
||||
int isatty(int fd);
|
||||
|
||||
#define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
|
||||
#define WTERMSIG(status) ((status) & 0x7f)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue