include files in the correct order
authorenglebass <englebass>
Sun, 27 Jan 2008 13:17:22 +0000 (13:17 +0000)
committerenglebass <englebass@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 27 Jan 2008 13:17:22 +0000 (13:17 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/eet@33633 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/eet_data.c
src/lib/eet_image.c
src/lib/eet_lib.c
src/lib/eet_memfile.c

index 5d281a8..8f2fbe6 100644 (file)
@@ -1,7 +1,7 @@
 #include <math.h>
 
-#include "Eet.h"
 #include "Eet_private.h"
+#include "Eet.h"
 
 /*
  * routines for doing data -> struct and struct -> data conversion
index 9fd81d1..09d6fdd 100644 (file)
@@ -1,5 +1,5 @@
-#include "Eet.h"
 #include "Eet_private.h"
+#include "Eet.h"
 
 /*---*/
 
index 94844a0..324705f 100644 (file)
@@ -2,15 +2,14 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 
-#include <config.h>
+#include "Eet_private.h"
+#include "Eet.h"
+
 #include <sys/types.h>
 #ifdef HAVE_SYS_MMAN_H
 # include <sys/mman.h>
 #endif
 
-#include "Eet.h"
-#include "Eet_private.h"
-
 #ifdef HAVE_REALPATH
 #undef HAVE_REALPATH
 #endif
index bfb0434..78c28fa 100644 (file)
@@ -1,11 +1,11 @@
-#include "Eet.h"
 #include "Eet_private.h"
+#include "Eet.h"
 
 FILE *
 _eet_memfile_read_open(const void *data, size_t size)
 {
 #ifdef HAVE_FMEMOPEN
-   return (FILE *)fmemopen((void*)data, size, "rb");
+   return fmemopen((void*)data, size, "rb");
 #else
    FILE *f;