181404Speter/* This program is free software; you can redistribute it and/or modify
281404Speter   it under the terms of the GNU General Public License as published by
381404Speter   the Free Software Foundation; either version 2, or (at your option)
481404Speter   any later version.
581404Speter
681404Speter   This program is distributed in the hope that it will be useful,
781404Speter   but WITHOUT ANY WARRANTY; without even the implied warranty of
881404Speter   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
981404Speter   GNU General Public License for more details.  */
1081404Speter
1181404Speter/* This file simply performs the include magic necessary for using select */
12102840Speter
13102840Speter/* select also requires <sys/types.h>, "xtime.h", and <unistd.h> */
14102840Speter
1581404Speter#ifdef HAVE_SYS_BSDTYPES_H
1681404Speter# include <sys/bsdtypes.h>
1781404Speter#endif
1881404Speter
1981404Speter#if HAVE_SYS_SELECT_H
2081404Speter# include <sys/select.h>
2181404Speter#endif
22