blob: abebad52fa3571af26bf119a73383f853983ef63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <sys/types.h>
#include <sys/time.h>
#include <sys/select.h> /* SVR4 silliness */
#include <stdio.h>
#include "select.h"
int main()
{
printf("FD_SETSIZE:%d\n",FD_SETSIZE);
return 0;
}
|