diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-05 16:23:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-05 16:23:06 +0000 |
commit | 15437e3e2a0cc9e4ba25066fd562b2862d38799b (patch) | |
tree | 5093eddb8a8dd3ae6edd564e43f6219be3fd9a08 /include | |
parent | d324e1b808daca7eec5b8700824a886a21508714 (diff) | |
download | busybox-w32-15437e3e2a0cc9e4ba25066fd562b2862d38799b.tar.gz busybox-w32-15437e3e2a0cc9e4ba25066fd562b2862d38799b.tar.bz2 busybox-w32-15437e3e2a0cc9e4ba25066fd562b2862d38799b.zip |
libbb: add xgetgrnam too. ~0 code size change
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 80311db2b..16e8f48db 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -703,6 +703,7 @@ void xget_uidgid(struct bb_uidgid_t*, const char*) FAST_FUNC; | |||
703 | /* chown-like handling of "user[:[group]" */ | 703 | /* chown-like handling of "user[:[group]" */ |
704 | void parse_chown_usergroup_or_die(struct bb_uidgid_t *u, char *user_group) FAST_FUNC; | 704 | void parse_chown_usergroup_or_die(struct bb_uidgid_t *u, char *user_group) FAST_FUNC; |
705 | struct passwd* xgetpwnam(const char *name) FAST_FUNC; | 705 | struct passwd* xgetpwnam(const char *name) FAST_FUNC; |
706 | struct group* xgetgrnam(const char *name) FAST_FUNC; | ||
706 | struct passwd* xgetpwuid(uid_t uid) FAST_FUNC; | 707 | struct passwd* xgetpwuid(uid_t uid) FAST_FUNC; |
707 | struct group* xgetgrgid(gid_t gid) FAST_FUNC; | 708 | struct group* xgetgrgid(gid_t gid) FAST_FUNC; |
708 | char* xuid2uname(uid_t uid) FAST_FUNC; | 709 | char* xuid2uname(uid_t uid) FAST_FUNC; |