config.h must be the first header included.

SVN revision: 67192
This commit is contained in:
Mike Blumenkrantz 2012-01-13 23:51:31 +00:00
parent e070cf048f
commit 421685162a
1 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eina.h>
#include <Ecore.h>
#include <Ecore_Input.h>
@ -12,9 +16,6 @@
#include <string.h>
#include <langinfo.h>
#include <assert.h>
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#define CLAMP(x, low, high) (x > high) ? high : (x < low) ? low : x
#define _(x) x