Skip to content
Snippets Groups Projects
Commit 69ab4cd3 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

include <sys/socket.h> to compile the fd_set stuff properly on all systems

parent 498f3985
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,11 @@
#include "setup.h"
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#include <curl/curl.h>
#include "urldata.h"
......
......@@ -30,6 +30,9 @@
#include <string.h>
#include <stdlib.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#include "urldata.h"
#include "sendf.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment