diff options
author | Denis Vlasenko | 2006-12-01 21:34:20 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-12-01 21:34:20 +0000 |
commit | becd8c538cc689460dca83ecc92222969059c5f4 (patch) | |
tree | 70be5c3624b5a9ead8ae771f0cfbc2da5f6815df /include/libbb.h | |
parent | 732268fe69739411c8e1373e688381253a04efe6 (diff) | |
download | busybox-becd8c538cc689460dca83ecc92222969059c5f4.zip busybox-becd8c538cc689460dca83ecc92222969059c5f4.tar.gz |
passwd: made smaller by ~130 bytes. size can go negative
if current trend will continue ;)
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index f891e1b..ef5086d 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -320,7 +320,7 @@ uint16_t xatou16(const char *numstr); * increases target size and is often not needed on embedded systems. */ extern long bb_xgetpwnam(const char *name); extern long bb_xgetgrnam(const char *name); -extern char *bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix); +/*extern char *bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix);*/ extern char *bb_getpwuid(char *name, long uid, int bufsize); extern char *bb_getgrgid(char *group, long gid, int bufsize); /* from chpst */ |