8a266a478e
Increase gid_t and uid_t to 32 bits and provide backwards compatibility where needed.
18 lines
172 B
C
18 lines
172 B
C
#ifndef __SYS_UCRED_H
|
|
#define __SYS_UCRED_H
|
|
|
|
struct ucred_old
|
|
{
|
|
pid_t pid;
|
|
short uid;
|
|
char gid;
|
|
};
|
|
|
|
struct ucred
|
|
{
|
|
pid_t pid;
|
|
uid_t uid;
|
|
gid_t gid;
|
|
};
|
|
|
|
#endif
|