Welcome to mirror list, hosted at ThFree Co, Russian Federation.

uidgid.h « runit - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d47fe620c3877ff1c708b6add3598ca95cf8628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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