diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-03 15:52:39 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-03 15:52:39 +0200 |
commit | a6a7d6ce079cabdaf2fa502b2e2cf15e5428ac6f (patch) | |
tree | b88cc7a8457658d67e0321718556ac807f6bccf3 /src/trysysel.c | |
parent | 00be7622c428f279872f84569f098ce16150f8a8 (diff) |
format files
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; } |