diff options
Diffstat (limited to 'src/trysysel.c')
-rw-r--r-- | src/trysysel.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/trysysel.c b/src/trysysel.c index abebad5..e974364 100644 --- a/src/trysysel.c +++ b/src/trysysel.c @@ -1,11 +1,13 @@ -#include <sys/types.h> -#include <sys/time.h> #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; + printf("FD_SETSIZE:%d\n", FD_SETSIZE); + return 0; } |