Enlightenment CVS committal

Author  : cedric
Project : e17
Module  : proto/eina

Dir     : e17/proto/eina/src/include


Modified Files:
        eina_error.h eina_file.h eina_hash.h eina_inlist.h 
        eina_lalloc.h eina_list.h eina_mempool.h eina_module.h 
        eina_private.h 


Log Message:
Use only the needed headers per file and remove some warning.


===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_error.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_error.h        30 Jul 2008 12:46:54 -0000      1.1
+++ eina_error.h        30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,8 @@
 #ifndef EINA_ERROR_H_
 #define EINA_ERROR_H_
 
+#include "eina_types.h"
+
 #define EINA_ERROR_PERR(fmt, ...) \
        eina_error_print(EINA_ERROR_LEVEL_ERR, __FILE__, __FUNCTION__, 
__LINE__, fmt, ##__VA_ARGS__)
 
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_file.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_file.h 30 Jul 2008 12:46:54 -0000      1.1
+++ eina_file.h 30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,8 @@
 #ifndef EINA_FILE_H_
 #define EINA_FILE_H_
 
+#include "eina_types.h"
+
 /**
  * @defgroup File_Group Memory File
  * @{
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_hash.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_hash.h 30 Jul 2008 12:46:54 -0000      1.1
+++ eina_hash.h 30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,8 @@
 #ifndef EINA_HASH_H_
 #define EINA_HASH_H_
 
+#include "eina_types.h"
+
 /**
  *
  */
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_inlist.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_inlist.h       30 Jul 2008 12:46:54 -0000      1.1
+++ eina_inlist.h       30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,8 @@
 #ifndef EINA_INLIST_H_
 #define EINA_INLIST_H_
 
+#include "eina_types.h"
+
 /**
  * @defgroup Inline_List_Group Inline List
  * @{
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_lalloc.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_lalloc.h       30 Jul 2008 12:46:54 -0000      1.1
+++ eina_lalloc.h       30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,8 @@
 #ifndef EINA_LALLOC_H_
 #define EINA_LALLOC_H_
 
+#include "eina_types.h"
+
 /**
  * @defgroup Array_Group Array
  * @{
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_list.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_list.h 30 Jul 2008 12:46:54 -0000      1.1
+++ eina_list.h 30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,8 @@
 #ifndef EINA_LIST_H_
 #define EINA_LIST_H_
 
+#include "eina_types.h"
+
 /**
  * @defgroup List_Group List
  * @{
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_mempool.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_mempool.h      30 Jul 2008 12:46:54 -0000      1.1
+++ eina_mempool.h      30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,8 @@
 #ifndef EINA_MEMPOOL_H_
 #define EINA_MEMPOOL_H_
 
+#include "eina_types.h"
+
 /**
  * @defgroup Memory_Pool_Group Memory Pool
  * @{
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_module.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_module.h       30 Jul 2008 12:46:54 -0000      1.1
+++ eina_module.h       30 Jul 2008 13:35:49 -0000      1.2
@@ -1,6 +1,9 @@
 #ifndef EINA_MODULE_H_
 #define EINA_MODULE_H_
 
+#include "eina_types.h"
+#include "eina_list.h"
+
 /**
  * @defgroup Module_Group Module
  * @{
===================================================================
RCS file: /cvs/e/e17/proto/eina/src/include/eina_private.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- eina_private.h      30 Jul 2008 12:46:54 -0000      1.1
+++ eina_private.h      30 Jul 2008 13:35:49 -0000      1.2
@@ -8,7 +8,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
-#include <string.h>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <stddef.h>
@@ -18,7 +17,7 @@
 #include <fcntl.h>
 #include <limits.h>
 #include <dirent.h>
-
+#include <string.h>
 
 #define DEBUG
 #include <assert.h>



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to