diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-07 04:18:03 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-07 04:18:03 +0200 |
commit | df41e8041e33111553c2e36c8befca8ec3b05a09 (patch) | |
tree | 2f1e361da43e21f7a8f2c51413e4e3a26402ef1f | |
parent | 631c3f127fe1d0a347a8572ec11afd6e769410e0 (diff) |
main.c: Sort includes
-rw-r--r-- | main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ +#include <errno.h> +#include <netinet/in.h> +#include <stdbool.h> #include <stdio.h> #include <stdlib.h> -#include <stdbool.h> -#include <sys/socket.h> #include <string.h> -#include <errno.h> -#include <netinet/in.h> +#include <sys/socket.h> #include <unistd.h> #define SERVER_PORT 6667 |