add useless type fd_mask. it's in the reserved namespace.
authorRich Felker <dalias@aerifal.cx>
Thu, 14 Apr 2011 20:23:31 +0000 (16:23 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 14 Apr 2011 20:23:31 +0000 (16:23 -0400)
include/sys/select.h

index 54d8030..7cb0af4 100644 (file)
@@ -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)];