yoz pushed a commit to branch master. http://git.enlightenment.org/misc/entrance.git/commit/?id=83a6df7446141d3913135c321e85f958456293f7
commit 83a6df7446141d3913135c321e85f958456293f7 Author: Michael Bouchaud <y...@efl.so> Date: Thu Mar 6 23:39:04 2014 +0000 entrance: don't include header in headers --- src/daemon/entrance_image.c | 2 +- src/daemon/entrance_image.h | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/src/daemon/entrance_image.c b/src/daemon/entrance_image.c index 6ece9ce..e04d326 100644 --- a/src/daemon/entrance_image.c +++ b/src/daemon/entrance_image.c @@ -1,4 +1,4 @@ -#include "entrance_image.h" +#include "entrance.h" const char *extn_images[] = {".png",".jpg",NULL}; diff --git a/src/daemon/entrance_image.h b/src/daemon/entrance_image.h index 4dc7676..425efd3 100644 --- a/src/daemon/entrance_image.h +++ b/src/daemon/entrance_image.h @@ -1,16 +1,6 @@ #ifndef ENTRANCE_IMAGE_H_ #define ENTRANCE_IMAGE_H_ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include <stdio.h> - -#include "entrance.h" - -extern const char *extn_images[]; - Eina_List* entrance_image_system_icons(); Eina_List* entrance_image_system_backgrounds(); Eina_List* entrance_image_user_icons(const char *username); --