mirror of
https://github.com/curl/curl.git
synced 2026-05-02 06:57:52 +03:00
Inclusion of time header files based on header existance
This commit is contained in:
parent
e150150d9f
commit
22307ae0ee
1 changed files with 6 additions and 3 deletions
|
|
@ -30,11 +30,14 @@
|
|||
|
||||
#include "setup.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#include <time.h>
|
||||
#else
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
#include <sys/time.h>
|
||||
#ifdef TIME_WITH_SYS_TIME
|
||||
#include <time.h>
|
||||
#endif
|
||||
#else
|
||||
#ifdef HAVE_TIME_H
|
||||
#include <time.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue