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