evil: Fix edc scripts compilation on windows

Fixes T5410

Summary: should fix the error T5410

Reviewers: vtorri, t.naumenko, cedric, raster, an.kroitor, rimmed, NikaWhite, FurryMyad

Subscribers: artem.popov, cedric, jpeg

Maniphest Tasks: T5410

Differential Revision: https://phab.enlightenment.org/D4830
This commit is contained in:
Ivan Furs 2017-06-12 11:50:54 +09:00 committed by Jean-Philippe Andre
parent 2dc29cfbfd
commit f3e9496cd1
2 changed files with 0 additions and 8 deletions

View File

@ -193,16 +193,12 @@ mkstemps(char *__template, int suffixlen)
return -1;
}
#if __MINGW64_VERSION_MAJOR < 4
int
mkstemp(char *__template)
{
return mkstemps(__template, 0);
}
#endif
char *
realpath(const char *file_name, char *resolved_name)
{

View File

@ -67,8 +67,6 @@ EAPI int unsetenv(const char *name);
*
*/
#if __MINGW64_VERSION_MAJOR < 4
/**
* @brief Create a unique temporary file name.
*
@ -101,8 +99,6 @@ EAPI int unsetenv(const char *name);
*/
EAPI int mkstemp(char *__template);
#endif
/**
* @brief create an unique temporary directory
*