summaryrefslogtreecommitdiffstats
path: root/usr/klibc/userdb/getpwuid.c
blob: cbe706a1a546d5e49ffe1e5e14a0b556df526e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * getpwuid.c
 *
 * Dummy getpwuid() to support udev
 */

#include <pwd.h>

#include "userdb.h"


struct passwd *getpwuid(uid_t uid)
{
	if (!uid)
		return (struct passwd *)&__root_user;

	errno = ENOENT;
	return NULL;
}