diff options
-rwxr-xr-x | deheader | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -971,6 +971,13 @@ requirements = ( (r"wait3()", ["<sys/types.h>", "<sys/wait.h>"]), (r"waitid()", ["<sys/types.h>", "<sys/wait.h>"]), (r"waitpid()", ["<sys/types.h>", "<sys/wait.h>"]), + (r"WEXITSTATUS()", ["<sys/types.h>", "<sys/wait.h>"]), + (r"WIFCONTINUED()", ["<sys/types.h>", "<sys/wait.h>"]), + (r"WIFEXITED()", ["<sys/types.h>", "<sys/wait.h>"]), + (r"WIFSIGNALED()", ["<sys/types.h>", "<sys/wait.h>"]), + (r"WIFSTOPPED()", ["<sys/types.h>", "<sys/wait.h>"]), + (r"WSTOPSIG()", ["<sys/types.h>", "<sys/wait.h>"]), + (r"WTERMSIG()", ["<sys/types.h>", "<sys/wait.h>"]), # tan - tangent function (r"tan()", ["<math.h>"]), # tanh - hyperbolic tangent function |