]> git.ipfire.org Git - thirdparty/mdadm.git/blob - pwgr.c
Change mark_clean to set_array_state.
[thirdparty/mdadm.git] / pwgr.c
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
10 struct passwd *getpwnam(const char *name)
11 {
12 return NULL;
13 }
14 struct group *getgrnam(const char *name)
15 {
16 return NULL;
17 }