tool_filetime.h whitespace, comments

git grep -E '# *if +!?defined\( *([A-Z0-9_]+) *\)' | grep -v -E '(\|\||&&)'
This commit is contained in:
Viktor Szakats 2025-07-25 15:27:12 +02:00
parent 64a3bec4c1
commit 1cf28c4192
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 3 additions and 4 deletions

View file

@ -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 */

View file

@ -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 */