summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-14 16:23:31 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-14 16:23:31 -0400
commit33a3f202d1998ca7ba2d3bec1e4886accc0053a7 (patch)
treec7387faf5f0c75a46330e2129181b60e16072699 /include
parente983aea0aec4b77cd3eb39dabc763b08c4485395 (diff)
downloadmusl-33a3f202d1998ca7ba2d3bec1e4886accc0053a7.tar.gz
add useless type fd_mask. it's in the reserved namespace.
Diffstat (limited to 'include')
-rw-r--r--include/sys/select.h2
1 files changed, 2 insertions, 0 deletions
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)];