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

include the time headers just like we used to do in the curl/curl.h header

once upon the time
parent 7c6424f0
No related branches found
No related tags found
No related merge requests found
......@@ -50,10 +50,19 @@
#include <winsock.h>
#endif
#ifdef HAVE_SYS_TIME_H
#ifdef TIME_WITH_SYS_TIME
/* We can include both fine */
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#else
# include <time.h>
#endif
#endif
#include "version.h"
#ifdef HAVE_IO_H /* typical win32 habit */
......
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