summaryrefslogtreecommitdiff
path: root/desktop/treeview.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-12-22 11:11:04 +0000
committerVincent Sanders <vince@kyllikki.org>2019-12-22 11:11:04 +0000
commit55ba27c68f1664e8a6a356e45c6c9ce9c7bdded9 (patch)
tree8ebc778f39292cbc599d15f400b3db2544528dae /desktop/treeview.c
parent3fdbef0566a4310dc2567c101b38e9c1667d883e (diff)
downloadnetsurf-55ba27c68f1664e8a6a356e45c6c9ce9c7bdded9.tar.gz
netsurf-55ba27c68f1664e8a6a356e45c6c9ce9c7bdded9.tar.bz2
re-order config include so strcasecmp is correctly detected on RISC OS/win32
Diffstat (limited to 'desktop/treeview.c')
-rw-r--r--desktop/treeview.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/treeview.c b/desktop/treeview.c
index e8b4a14c8..cb4ca80e7 100644
--- a/desktop/treeview.c
+++ b/desktop/treeview.c
@@ -22,11 +22,11 @@
* Treeview handling implementation.
*/
-#define _GNU_SOURCE /* strcasestr needs this for string.h */
+#include "utils/config.h"
+#define _GNU_SOURCE /* strcasestr needs this for string.h */
#include <string.h>
-#include "utils/config.h"
#include "utils/utils.h"
#include "utils/log.h"
#include "utils/nsurl.h"