Use __minix to detect Minix, which works on both ACK and GCC.

This commit is contained in:
Dan Fandrich 2006-08-11 18:11:42 +00:00
parent b04cbebf86
commit eb26a581f9
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@
/* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish
libc5-based Linux systems. Only include it on system that are known to
require it! */
#if defined(_AIX) || defined(NETWARE) || defined(__NetBSD__) || defined(_MINIX)
#if defined(_AIX) || defined(NETWARE) || defined(__NetBSD__) || defined(__minix)
#include <sys/select.h>
#endif