summaryrefslogtreecommitdiff
path: root/utils/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.h')
-rw-r--r--utils/config.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/utils/config.h b/utils/config.h
index a87f19b53..d0ec21c53 100644
--- a/utils/config.h
+++ b/utils/config.h
@@ -49,7 +49,13 @@ char *strcasestr(const char *haystack, const char *needle);
/* Although these platforms might have strftime or strptime they
* appear not to support the time_t seconds format specifier.
*/
-#if (defined(_WIN32) || defined(__riscos__) || defined(__HAIKU__) || defined(__BEOS__) || defined(__amigaos4__) || defined(__AMIGA__) || defined(__MINT__))
+#if (defined(_WIN32) || \
+ defined(__riscos__) || \
+ defined(__HAIKU__) || \
+ defined(__BEOS__) || \
+ defined(__amigaos4__) || \
+ defined(__AMIGA__) || \
+ defined(__MINT__))
#undef HAVE_STRPTIME
#undef HAVE_STRFTIME
#else