mirror of
https://github.com/curl/curl.git
synced 2026-08-24 20:03:52 +03:00
Removed "#ifndef__WATCOMC__". Use "#ifdef HAVE_SYS_TIME_H" instead.
This commit is contained in:
parent
909941405f
commit
c7aae10300
11 changed files with 13 additions and 11 deletions
|
|
@ -24,11 +24,13 @@
|
|||
***************************************************************************/
|
||||
|
||||
#include <stdio.h>
|
||||
#if defined(WIN32) || defined(__WATCOMC__)
|
||||
#if defined(WIN32)
|
||||
#include <time.h>
|
||||
#else
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <curl/curl.h>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue