more elegant signal ifdef
This commit is contained in:
parent
0225bb0bf3
commit
c89fb29390
|
@ -1,5 +1,13 @@
|
||||||
|
#include "sysdep.h"
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
#if defined(HAVE_SELECT)
|
||||||
|
# include <sys/types.h> /* for FD_SET and friends (BSD) */
|
||||||
|
#if defined(HAVE_SYS_SELECT_H)
|
||||||
|
# include <sys/select.h>
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "../scheme48.h"
|
#include "../scheme48.h"
|
||||||
|
|
Loading…
Reference in New Issue