diff options
-rw-r--r-- | FICS/get_tcp_conn.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/FICS/get_tcp_conn.c b/FICS/get_tcp_conn.c index 904da47..73a6d64 100644 --- a/FICS/get_tcp_conn.c +++ b/FICS/get_tcp_conn.c @@ -14,19 +14,23 @@ /* Uncomment the following line if you are using old socket calls */ /* #define OLDSOCKET */ +#include "stdinclude.h" -#include <sys/types.h> #include <sys/socket.h> -#include <netinet/in.h> +#include <sys/types.h> + #include <arpa/inet.h> +#include <netdb.h> +#include <netinet/in.h> + #include <ctype.h> +#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <netdb.h> + #include "get_tcp_conn.h" #include "get_tcp_conn.proto.h" -#include "stdinclude.h" extern int errno; extern int close(); |