Codebase list mdadm / 9d9bc5c5-dbbe-46ce-acf0-abdeb693c0fb/main pwgr.c
9d9bc5c5-dbbe-46ce-acf0-abdeb693c0fb/main

Tree @9d9bc5c5-dbbe-46ce-acf0-abdeb693c0fb/main (Download .tar.gz)

pwgr.c @9d9bc5c5-dbbe-46ce-acf0-abdeb693c0fb/mainraw · history · blame

/*
 * 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;
}