summaryrefslogtreecommitdiff
path: root/src/trysysel.c
blob: e974364980cf354c1938c10d9237d7ad403e3ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <sys/select.h> /* SVR4 silliness */
#include <sys/time.h>
#include <sys/types.h>

#include <stdio.h>

#include "select.h"

int main()
{
  printf("FD_SETSIZE:%d\n", FD_SETSIZE);
  return 0;
}