summaryrefslogtreecommitdiff
path: root/tests/test_FD_ISSET_SETSIZE.c
blob: 0362aaa8ff0d85f01023c806e10fd16dba86ddee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "common.h"

#include <sys/select.h>

int main(int argc, char** argv) {
  fd_set rfds;

  CHK_FAIL_START
  FD_ISSET(FD_SETSIZE, &rfds);
  CHK_FAIL_END

  puts((const char*)&rfds);
  return ret;
}