diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-14 16:23:31 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-14 16:23:31 -0400 |
commit | 33a3f202d1998ca7ba2d3bec1e4886accc0053a7 (patch) | |
tree | c7387faf5f0c75a46330e2129181b60e16072699 /include | |
parent | e983aea0aec4b77cd3eb39dabc763b08c4485395 (diff) | |
download | musl-33a3f202d1998ca7ba2d3bec1e4886accc0053a7.tar.gz musl-33a3f202d1998ca7ba2d3bec1e4886accc0053a7.tar.xz musl-33a3f202d1998ca7ba2d3bec1e4886accc0053a7.zip |
add useless type fd_mask. it's in the reserved namespace.
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/select.h | 2 |
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)]; |