Adding upstream version 4.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
16732c81e5
commit
4fd4995b67
279 changed files with 77998 additions and 0 deletions
17
pwgr.c
Normal file
17
pwgr.c
Normal file
|
@ -0,0 +1,17 @@
|
|||
|
||||
/*
|
||||
* 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue