diff options
author | Denis Vlasenko | 2006-10-03 17:52:24 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-03 17:52:24 +0000 |
commit | f0a97fb43ab1ccab1904e7bc947a97c6e795900e (patch) | |
tree | 18d1b15a122612f7e456e6b27f682454a1e2fd19 /runit/uidgid.h | |
parent | fe54458e46eef445da32862b2171392be8f01ab4 (diff) | |
download | busybox-f0a97fb43ab1ccab1904e7bc947a97c6e795900e.zip busybox-f0a97fb43ab1ccab1904e7bc947a97c6e795900e.tar.gz |
Yeah, yeah... I forgot about 'svn add'... fixing that
Diffstat (limited to 'runit/uidgid.h')
-rw-r--r-- | runit/uidgid.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/runit/uidgid.h b/runit/uidgid.h new file mode 100644 index 0000000..1d47fe6 --- /dev/null +++ b/runit/uidgid.h @@ -0,0 +1,14 @@ +#ifndef UIDGID_H +#define UIDGID_H + +#include <sys/types.h> + +struct uidgid { + uid_t uid; + gid_t gid[61]; + int gids; +}; + +extern unsigned uidgid_get(struct uidgid *, char *, unsigned); + +#endif |