~vcs-imports/busybox/trunk

« back to all changes in this revision

Viewing changes to runit/uidgid.h

  • Committer: Denis Vlasenko
  • Date: 2006-10-03 17:52:24 UTC
  • Revision ID: git-v1:f0a97fb43ab1ccab1904e7bc947a97c6e795900e
Yeah, yeah... I forgot about 'svn add'... fixing that

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef UIDGID_H
 
2
#define UIDGID_H
 
3
 
 
4
#include <sys/types.h>
 
5
 
 
6
struct uidgid {
 
7
        uid_t uid;
 
8
        gid_t gid[61];
 
9
        int gids;
 
10
};
 
11
 
 
12
extern unsigned uidgid_get(struct uidgid *, char *, unsigned);
 
13
 
 
14
#endif