21 lines
264 B
C
21 lines
264 B
C
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
__inline struct passwd* getpwnam (char* g){return 0;}
|
||
|
|
||
|
struct passwd
|
||
|
{
|
||
|
char *pw_name;
|
||
|
char *pw_passwd;
|
||
|
__uid_t pw_uid;
|
||
|
__gid_t pw_gid;
|
||
|
char *pw_gecos;
|
||
|
char *pw_dir;
|
||
|
char *pw_shell;
|
||
|
};
|
||
|
|
||
|
#define getpwuid(i) NULL
|
||
|
|