diff options
Diffstat (limited to 'src/lib/eo.c')
-rw-r--r-- | src/lib/eo.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/eo.c b/src/lib/eo.c index 98a0631..59e11f3 100644 --- a/src/lib/eo.c +++ b/src/lib/eo.c @@ -1,10 +1,12 @@ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include <Eina.h> #include "Eo.h" #include "eo_private.h" -#include "config.h" - /* The last id that should be reserved for statically allocated classes. */ #define EO_CLASS_IDS_FIRST 1 #define EO_OP_IDS_FIRST 1 @@ -1569,4 +1571,3 @@ eo_manual_free(Eo *obj) _eo_free(obj); } - |