diff options
Diffstat (limited to 'toys/posix/id.c')
-rw-r--r-- | toys/posix/id.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/toys/posix/id.c b/toys/posix/id.c index dbcf9a15..f40f6c1b 100644 --- a/toys/posix/id.c +++ b/toys/posix/id.c @@ -52,20 +52,6 @@ static void showid(char *header, unsigned u, char *s) printf("%s%u(%s)", header, u, s); } -struct passwd *xgetpwuid(uid_t uid) -{ - struct passwd *pwd = getpwuid(uid); - if (!pwd) error_exit(NULL); - return pwd; -} - -struct group *xgetgrgid(gid_t gid) -{ - struct group *group = getgrgid(gid); - if (!group) error_exit(NULL); - return group; -} - void do_id(char *username) { int flags, i, ngroups, cmd_groups = toys.which->name[0] == 'g'; |