1
0
Fork 0
mdadm/pwgr.c
Daniel Baumann 4fd4995b67
Adding upstream version 4.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-14 05:52:19 +01:00

17 lines
265 B
C

/*
* We cannot link a static binary with passwd/group support, so
* just do without
*/
#include <stdlib.h>
#include <pwd.h>
#include <grp.h>
struct passwd *getpwnam(const char *name)
{
return NULL;
}
struct group *getgrnam(const char *name)
{
return NULL;
}