summaryrefslogtreecommitdiff
path: root/Xpoll.h.in
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-09-23 17:00:18 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-09-23 17:00:18 -0700
commit05914c82696432126a72845dd061c7f5e24963c5 (patch)
treeb2cc5d92dcc7f9e7bcb8998108452129d50f43a9 /Xpoll.h.in
parentef37625372546efb32cdb37823b9927cf16b0840 (diff)
Don't need an #ifdef when both cases just include the same file
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'Xpoll.h.in')
-rw-r--r--Xpoll.h.in9
1 files changed, 1 insertions, 8 deletions
diff --git a/Xpoll.h.in b/Xpoll.h.in
index 643c2e1..8275658 100644
--- a/Xpoll.h.in
+++ b/Xpoll.h.in
@@ -56,14 +56,7 @@ from The Open Group.
#include <X11/Xos.h>
-/* Below is the monster branch from hell. Basically, most systems will drop to
- * 'the branch below is the fallthrough for halfway modern systems', and include
- * <sys/select.h>, so we get the FD_* macros. */
-# if defined(SVR4) && !defined(FD_SETSIZE)
-# include <sys/select.h>
-# else /* not SVR4/CRAY/AIXv3 */
-# include <sys/select.h>
-# endif
+#include <sys/select.h> /* Get the FD_* macros. */
#include <X11/Xmd.h>