summaryrefslogtreecommitdiff
path: root/src/pwd/getpwuid.c
blob: dd1236ff98a87db450971c78db00f5884da780f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "sys/types.h"
#include <pwd.h>
#include "stddef.h"

struct passwd * getpwuid(uid_t uid)
{
	(void)uid;
	return NULL;
}

/*
POSIX(1)
*/