* remove the inclusion of config.h in Eet_private.h (not needed)
authorcaro <caro>
Sun, 23 Aug 2009 09:36:43 +0000 (09:36 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 23 Aug 2009 09:36:43 +0000 (09:36 +0000)
 * add config.h in all source file to be consistent, even if it
   is not necessary
 * formatting

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@41941 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/Eet_private.h
src/lib/eet_lib.c
src/lib/eet_node.c
src/lib/eet_utils.c

index 1eadd62..1052889 100644 (file)
@@ -5,10 +5,6 @@
 #ifndef _EET_PRIVATE_H
 #define _EET_PRIVATE_H
 
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
 typedef struct _Eet_String              Eet_String;
 
 struct _Eet_String
index a6b5d99..52fdeb3 100644 (file)
@@ -70,7 +70,7 @@ void *alloca (size_t);
 #include "Eet_private.h"
 
 #ifdef HAVE_REALPATH
-#undef HAVE_REALPATH
+# undef HAVE_REALPATH
 #endif
 
 #define EET_MAGIC_FILE                  0x1ee7ff00
index 1a900b4..d91d10b 100644 (file)
@@ -1,4 +1,13 @@
+/*
+ * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
+ */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdio.h>
+
 #include <Eina.h>
 
 #include "Eet.h"
index d477cec..46fae93 100644 (file)
@@ -2,6 +2,10 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdio.h>
 #include <math.h>