summaryrefslogtreecommitdiff
path: root/src/os.h
diff options
context:
space:
mode:
authorAmadeusz Sławiński <amade@asmblr.net>2017-09-21 13:28:07 +0200
committerAmadeusz Sławiński <amade@asmblr.net>2017-09-27 09:47:59 +0200
commit184cf036639e5614572e4b154310a16ba190bb6c (patch)
treec0fc0d5f2a1956af41c08add2fd498c6a61514ac /src/os.h
parent14b54b47bd32db7956ac21b3f677b78894d952a0 (diff)
downloadscreen-184cf036639e5614572e4b154310a16ba190bb6c.tar.gz
remove defines which are part of posix
Diffstat (limited to 'src/os.h')
-rw-r--r--src/os.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/os.h b/src/os.h
index 4a89c66..1953a72 100644
--- a/src/os.h
+++ b/src/os.h
@@ -143,34 +143,6 @@ typedef char* slot_t; /* used internally in utmp.c */
# define FNBLOCK O_NONBLOCK
#endif
-
-/*****************************************************************
- * Wait stuff
- */
-
-# include <sys/wait.h>
-
-#ifndef WTERMSIG
-# define WTERMSIG(status) (status & 0177)
-#endif
-
-#ifndef WSTOPSIG
-# define WSTOPSIG(status) ((status >> 8) & 0377)
-#endif
-
-/* NET-2 uses WCOREDUMP */
-#if defined(WCOREDUMP) && !defined(WIFCORESIG)
-# define WIFCORESIG(status) WCOREDUMP(status)
-#endif
-
-#ifndef WIFCORESIG
-# define WIFCORESIG(status) (status & 0200)
-#endif
-
-#ifndef WEXITSTATUS
-# define WEXITSTATUS(status) ((status >> 8) & 0377)
-#endif
-
/*****************************************************************
* user defineable stuff
*/