]>
Commit | Line | Data |
---|---|---|
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 | ||
10 | struct passwd *getpwnam(const char *name) | |
11 | { | |
12 | return NULL; | |
13 | } | |
14 | struct group *getgrnam(const char *name) | |
15 | { | |
16 | return NULL; | |
17 | } |