summaryrefslogtreecommitdiff
path: root/src/pwd/getpwnam.c
blob: 5a255caf7bd6b5a58eb3d1509cef0c02537eda65 (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 * getpwnam(const char * name)
{
	(void)name;
	return NULL;
}

/*
POSIX(1)
*/