summaryrefslogtreecommitdiff
path: root/src/lib/eina_hash.c
diff options
context:
space:
mode:
authorVincent Torri <vincent.torri@gmail.com>2011-02-17 08:34:42 +0000
committerVincent Torri <vincent.torri@gmail.com>2011-02-17 08:34:42 +0000
commitbc6efff11cdbc172bacd5395c1293acf2da8c31e (patch)
tree9b50ebc8d206e3824f9a18e80d9388a21b865dac /src/lib/eina_hash.c
parentfd6d1f7e8c1274c175a4dc3ad5844bf6e8866b36 (diff)
downloadeina-bc6efff11cdbc172bacd5395c1293acf2da8c31e.tar.gz
Better headers check.
Btw, should we include inttypes.h where we include stdint.h ? SVN revision: 57114
Diffstat (limited to 'src/lib/eina_hash.c')
-rw-r--r--src/lib/eina_hash.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/eina_hash.c b/src/lib/eina_hash.c
index 18633e7..38c6a61 100644
--- a/src/lib/eina_hash.c
+++ b/src/lib/eina_hash.c
@@ -24,10 +24,13 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
+
#ifdef _MSC_VER
# include <Evil.h>
-#else
-# include <stdint.h>
#endif
#include "eina_config.h"