e2fsprogs/include/mingw/pwd.h

21 lines
264 B
C
Raw Normal View History

2022-05-13 20:16:34 +08:00
#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