diff options
Diffstat (limited to 'LibC/unistd.h')
-rw-r--r-- | LibC/unistd.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/LibC/unistd.h b/LibC/unistd.h index 9b388e0733..69d9e9c31c 100644 --- a/LibC/unistd.h +++ b/LibC/unistd.h @@ -48,12 +48,6 @@ int dup2(int old_fd, int new_fd); #define WIFEXITED(status) (WTERMSIG(status) == 0) #define WIFSIGNALED(status) (((char) (((status) & 0x7f) + 1) >> 1) > 0) -#define SIGINT 2 -#define SIGKILL 9 -#define SIGSEGV 11 -#define SIGTERM 15 -#define SIGCHLD 17 - #define HOST_NAME_MAX 64 #define S_IFMT 0170000 |