* remove the inclusion of config.h in Eet_private.h (not needed)

* add config.h in all source file to be consistent, even if it
   is not necessary
 * formatting


SVN revision: 41941
This commit is contained in:
Vincent Torri 2009-08-23 09:36:43 +00:00
parent 6e7aecc7c0
commit da7d129e2d
4 changed files with 14 additions and 5 deletions

View 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

View 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

View 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"

View 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>