From 2df35cd46c331c8ea1e2b12eccc0430405a530c9 Mon Sep 17 00:00:00 2001 From: watchwolf Date: Fri, 19 Dec 2008 20:54:13 +0000 Subject: [PATCH] include the headers in the correct order so that EAPI is correctly defined on Windows from caro git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@38234 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/ecore/ecore_getopt.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/lib/ecore/ecore_getopt.c b/src/lib/ecore/ecore_getopt.c index 4607714..11a0b6a 100644 --- a/src/lib/ecore/ecore_getopt.c +++ b/src/lib/ecore/ecore_getopt.c @@ -1,10 +1,16 @@ -#include "Ecore_Getopt.h" -#include -#include +#ifdef HAVE_CONFIG_H +# include +#endif + #include +#include #include #include +#include + +#include "Ecore_Getopt.h" + static const char *prog = NULL; static char **argv = NULL; static int argc = 0; -- 2.7.4