fortify-headers

standalone fortify-source implementation
git clone git://git.2f30.org/fortify-headers
Log | Files | Refs | README | LICENSE

test_FD_ISSET_SETSIZE.c (204B)


      1 #include "common.h"
      2 
      3 #include <sys/select.h>
      4 
      5 int main(int argc, char** argv) {
      6   fd_set rfds;
      7 
      8   CHK_FAIL_START
      9   FD_ISSET(FD_SETSIZE, &rfds);
     10   CHK_FAIL_END
     11 
     12   puts((const char*)&rfds);
     13   return ret;
     14 }