more elegant signal ifdef

This commit is contained in:
bdc 1997-04-05 22:16:05 +00:00
parent 0225bb0bf3
commit c89fb29390
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,13 @@
#include "sysdep.h"
#include <sys/types.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 <time.h>
#include "../scheme48.h"