sys-select.h 263 B

12345678910111213141516
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: Richard Kelsey, Jonathan Rees
  5. */
  6. /*
  7. * If we have a sys/select.h, then include it.
  8. */
  9. #if defined(HAVE_SYS_SELECT_H)
  10. #include <sys/types.h>
  11. #include <sys/select.h>
  12. #endif