Evil: remove getpwuid() from Evil.

Summary: getpwuid() is used only in eina_test_vpath() and is called when getpwent() is available, which is not the case on Windows

Test Plan: compilation

Reviewers: raster, cedric, zmike

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9326
This commit is contained in:
Vincent Torri 2019-07-16 10:43:11 +01:00 committed by Carsten Haitzler (Rasterman)
parent ab26579cab
commit 34f88a5786
2 changed files with 0 additions and 22 deletions

View File

@ -67,10 +67,3 @@ getpwnam(const char *n)
return &pw;
}
struct passwd *
getpwuid(uid_t uid)
{
return getpwnam(getlogin());
(void)uid;
}

View File

@ -72,21 +72,6 @@ struct passwd {
*/
EAPI struct passwd *getpwnam(const char *n);
/**
* @brief Return a passwd structure.
*
* @param uid The User ID.
* @return A stacally allocated passwd structure.
*
* This function fills a static buffer @ref passwd with @p uid and the
* user name.
*
* Conformity: None.
*
* Supported OS: Windows XP.
*/
EAPI struct passwd *getpwuid (uid_t uid);
#ifdef __cplusplus
}