summaryrefslogtreecommitdiff
path: root/utils/config.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-11-13 17:54:06 +0000
committerVincent Sanders <vince@kyllikki.org>2019-11-13 17:54:06 +0000
commitfbaa971ad00873a1684aef538aa6edbbed7e55ed (patch)
treec7035b00c733b3521f4b5936d88e156ccec14083 /utils/config.h
parent185d0343236afbd1d900339b45c02985bd2d4ecb (diff)
downloadnetsurf-fbaa971ad00873a1684aef538aa6edbbed7e55ed.tar.gz
netsurf-fbaa971ad00873a1684aef538aa6edbbed7e55ed.tar.bz2
make config detection macro more obvious
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