#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;
}