fix compilation on win ce and windows

SVN revision: 38219
This commit is contained in:
Vincent Torri 2008-12-19 01:47:42 +00:00
parent 836ddd6026
commit 902f48fa2d
1 changed files with 16 additions and 5 deletions

View File

@ -39,16 +39,27 @@
#include <time.h>
#include <dirent.h>
#include <pwd.h>
#include <grp.h>
#include <glob.h>
#include <locale.h>
#include <libintl.h>
#include <errno.h>
#include <signal.h>
#ifdef ELM_UNIX
# include <locale.h>
# include <libintl.h>
# include <signal.h>
# include <grp.h>
# include <glob.h>
#endif
#ifdef ELM_ALLOCA_H
# include <alloca.h>
#endif
#if defined (ELM_WIN32) || defined (ELM_WINCE)
# include <malloc.h>
# ifndef alloca
# define alloca _alloca
# endif
#endif
/* EFL headers */
#include <Eina.h>