aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-11-28 20:18:04 -0600
committerRob Landley <rob@landley.net>2013-11-28 20:18:04 -0600
commit9e44a5841f0ab9bc03cefb5631c80f3e4e5a60fe (patch)
tree1a849db3a91432452eba881a75039bb43edb90ed /lib/lib.h
parent9fff257357fee7a90e7e8b5b44c0abc18d019b64 (diff)
downloadtoybox-9e44a5841f0ab9bc03cefb5631c80f3e4e5a60fe.tar.gz
Move xgetpwuid() and xgetgrgid() into xwrap.c
Diffstat (limited to 'lib/lib.h')
-rw-r--r--lib/lib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/lib.h b/lib/lib.h
index a0a1c316..e5d4a1d3 100644
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -111,6 +111,8 @@ char *xrealpath(char *path);
void xchdir(char *path);
void xmkpath(char *path, int mode);
void xsetuid(uid_t uid);
+struct passwd *xgetpwuid(uid_t uid);
+struct group *xgetgrgid(gid_t gid);
char *xreadlink(char *name);
long xparsetime(char *arg, long units, long *fraction);
void xpidfile(char *name);