You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
|
|
__inline struct group * getgrnam(char* g){return 0;}
|
|
|
|
struct group
|
|
{
|
|
char *gr_name;
|
|
char *gr_passwd;
|
|
__gid_t gr_gid;
|
|
char **gr_mem;
|
|
};
|
|
|
|
#define getgrgid(i) NULL
|