0.9.10.20:
[sbcl.git] / contrib / sb-posix / alien / waitpid-macros.c
diff --git a/contrib/sb-posix/alien/waitpid-macros.c b/contrib/sb-posix/alien/waitpid-macros.c
deleted file mode 100644 (file)
index 10eee01..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#include <sys/types.h>
-#include <sys/wait.h>
-
-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... */