blob: ae1359c925871c2b2dc0ec141fae5d371f7fe7f4 [file] [log] [blame]
/*
* getpwnam.c
*
* Dummy getpwnam() to support udev
*/
#include "userdb.h"
struct passwd *getpwnam(const char *name)
{
if (!strcmp(name, "root"))
return (struct passwd *)&__root_user;
errno = ENOENT;
return NULL;
}