diff options
Diffstat (limited to 'overflow_tcp.c')
-rw-r--r-- | overflow_tcp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/overflow_tcp.c b/overflow_tcp.c index 24af99e..618132f 100644 --- a/overflow_tcp.c +++ b/overflow_tcp.c @@ -1,9 +1,15 @@ +#ifdef _WIN32 +#include <ws2tcpip.h> +#include <windows.h> +#endif #include <stdlib.h> #include <stdio.h> #include <sys/types.h> +#ifndef _WIN32 #include <sys/socket.h> #include <sys/wait.h> #include <netinet/in.h> +#endif #include <string.h> #include <unistd.h> |