From: Rich Felker Date: Thu, 14 Apr 2011 20:23:31 +0000 (-0400) Subject: add useless type fd_mask. it's in the reserved namespace. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=33a3f202d1998ca7ba2d3bec1e4886accc0053a7;p=android-x86%2Fexternal-musl-libc.git add useless type fd_mask. it's in the reserved namespace. --- diff --git a/include/sys/select.h b/include/sys/select.h index 54d8030f..7cb0af43 100644 --- a/include/sys/select.h +++ b/include/sys/select.h @@ -15,6 +15,8 @@ extern "C" { #define FD_SETSIZE 1024 +typedef unsigned long fd_mask; + typedef struct { unsigned long fds_bits[FD_SETSIZE / 8 / sizeof(long)];