Skip to content

Commit

Permalink
Fix for Android to include sys/select.h for fd_set.
Browse files Browse the repository at this point in the history
  • Loading branch information
gknauf committed Apr 14, 2012
1 parent 41f8ff5 commit 4ef145c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ares.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
libc5-based Linux systems. Only include it on system that are known to
require it! */
#if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \
defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY)
defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY) || \
defined(__ANDROID__)
#include <sys/select.h>
#endif
#if (defined(NETWARE) && !defined(__NOVELL_LIBC__))
Expand Down

0 comments on commit 4ef145c

Please sign in to comment.