X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-posix%2Falien%2Fwaitpid-macros.c;fp=contrib%2Fsb-posix%2Falien%2Fwaitpid-macros.c;h=0000000000000000000000000000000000000000;hb=10cdee0326e9e8a5bbfe1d8312a73d58f023fb5f;hp=10eee0146589537f0e08b8b9d4442795d6126c52;hpb=67a29630594d9ed342ceb6d61fd1b7b16d215dbe;p=sbcl.git diff --git a/contrib/sb-posix/alien/waitpid-macros.c b/contrib/sb-posix/alien/waitpid-macros.c deleted file mode 100644 index 10eee01..0000000 --- a/contrib/sb-posix/alien/waitpid-macros.c +++ /dev/null @@ -1,29 +0,0 @@ -#include -#include - -int wifexited(int status) { - return WIFEXITED(status); -} - -int wexitstatus(int status) { - return WEXITSTATUS(status); -} - -int wifsignaled(int status) { - return WIFSIGNALED(status); -} - -int wtermsig(int status) { - return WTERMSIG(status); -} - -int wifstopped(int status) { - return WIFSTOPPED(status); -} - -int wstopsig(int status) { - return WSTOPSIG(status); -} - -/* FIXME: POSIX also defines WIFCONTINUED, but that appears not to - exist on at least Linux... */