diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-09-23 17:00:18 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-09-23 17:00:18 -0700 |
commit | 05914c82696432126a72845dd061c7f5e24963c5 (patch) | |
tree | b2cc5d92dcc7f9e7bcb8998108452129d50f43a9 /Xpoll.h.in | |
parent | ef37625372546efb32cdb37823b9927cf16b0840 (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.in | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -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> |