]> git.ipfire.org Git - thirdparty/mdadm.git/blame - pwgr.c
imsm: validate multiple ppls during assemble
[thirdparty/mdadm.git] / pwgr.c
CommitLineData
c97be4db
NB
1
2/*
3 * We cannot link a static binary with passwd/group support, so
4 * just do without
5 */
6#include <stdlib.h>
7#include <pwd.h>
8#include <grp.h>
9
10struct passwd *getpwnam(const char *name)
11{
12 return NULL;
13}
14struct group *getgrnam(const char *name)
15{
16 return NULL;
17}