diff --git a/src/tool_filetime.c b/src/tool_filetime.c index f4ff3a4291..e3f4129b36 100644 --- a/src/tool_filetime.c +++ b/src/tool_filetime.c @@ -151,4 +151,4 @@ void setfiletime(curl_off_t filetime, const char *filename, #endif } } -#endif /* defined(HAVE_UTIME) || defined(HAVE_UTIMES) || defined(_WIN32) */ +#endif /* HAVE_UTIME || HAVE_UTIMES || _WIN32 */ diff --git a/src/tool_filetime.h b/src/tool_filetime.h index 4830b218c3..6c0c442070 100644 --- a/src/tool_filetime.h +++ b/src/tool_filetime.h @@ -30,13 +30,12 @@ struct GlobalConfig; int getfiletime(const char *filename, struct GlobalConfig *global, curl_off_t *stamp); -#if defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \ +#if defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \ (defined(_WIN32) && (SIZEOF_CURL_OFF_T >= 8)) void setfiletime(curl_off_t filetime, const char *filename, struct GlobalConfig *global); #else #define setfiletime(a,b,c) tool_nop_stmt -#endif /* defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \ - (defined(_WIN32) && (SIZEOF_CURL_OFF_T >= 8)) */ +#endif #endif /* HEADER_CURL_TOOL_FILETIME_H */