From b2ad88bd0191d34a76edc0afb1ce90c107d255a3 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Tue, 1 Feb 2011 07:35:35 +0900 Subject: [PATCH] Fix #include ordering. --- tests/eek-xml-test.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/eek-xml-test.c b/tests/eek-xml-test.c index 52694d44..0c21d9f7 100644 --- a/tests/eek-xml-test.c +++ b/tests/eek-xml-test.c @@ -17,12 +17,17 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA */ -#include "eek/eek-xml.h" -#include "eek/eek-xkl.h" /* For gdk_x11_display_get_xdisplay(). See main(). */ #include +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "eek/eek-xml.h" +#include "eek/eek-xkl.h" + static void test_output_parse (void) {