Yeah, yeah... I forgot about 'svn add'... fixing that

This commit is contained in:
Denis Vlasenko
2006-10-03 17:52:24 +00:00
parent fe54458e46
commit f0a97fb43a
6 changed files with 523 additions and 0 deletions

14
runit/uidgid.h Normal file
View File

@@ -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