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

include sys/select.h to prevent picky compiler warnings when using select()

without proto
parent a3966919
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,9 @@
#endif
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
/*
* Source code in here hugely as reported in bug report 651460 by
......
......@@ -5,6 +5,9 @@
#endif
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
/*
* Source code in here hugely as reported in bug report 651464 by
......
#include "test.h"
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
int test(char *URL)
{
CURL* curls;
......
......@@ -7,6 +7,9 @@
#endif
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <openssl/opensslv.h>
#include <openssl/x509v3.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