From 29a766d2d4f40dba73385bb4f0685683c736f87c Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Thu, 21 Dec 1995 19:51:55 +0000 Subject: Add ifndef wrappers --- include/wait.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'include/wait.h') diff --git a/include/wait.h b/include/wait.h index a72943c..fa3c9cc 100644 --- a/include/wait.h +++ b/include/wait.h @@ -10,8 +10,15 @@ defines, since our code does not use waitpid(). We also fail to declare wait() and waitpid(). */ +#ifndef WIFEXITED #define WIFEXITED(w) (((w)&0377) == 0) +#endif + +#ifndef WIFSIGNALED #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0) +#endif + +#ifndef WIFSTOPPED #ifdef IBM6000 /* Unfortunately, the above comment (about being compatible in all Unix @@ -24,15 +31,33 @@ #else #define WIFSTOPPED(w) (((w)&0377) == 0177) #endif +#endif +#ifndef WEXITSTATUS #define WEXITSTATUS(w) (((w) >> 8) & 0377) /* same as WRETCODE */ +#endif + +#ifndef WTERMSIG #define WTERMSIG(w) ((w) & 0177) +#endif + +#ifndef WSTOPSIG #define WSTOPSIG WEXITSTATUS +#endif /* These are not defined in POSIX, but are used by our programs. */ #define WAITTYPE int +#ifndef WCOREDUMP #define WCOREDUMP(w) (((w)&0200) != 0) +#endif + +#ifndef WSETEXIT #define WSETEXIT(w,status) ((w) = (0 | ((status) << 8))) +#endif + +#ifndef WSETSTOP #define WSETSTOP(w,sig) ((w) = (0177 | ((sig) << 8))) +#endif + -- cgit v1.1