Whamcloud - gitweb
po: update sv.po (from translationproject.org)
[tools/e2fsprogs.git] / include / mingw / pwd.h
1
2 #pragma once
3
4 #include <sys/types.h>
5
6 __inline struct passwd* getpwnam (char* g){return 0;}
7
8 struct passwd
9 {
10   char *pw_name;
11   char *pw_passwd;
12   __uid_t pw_uid;
13   __gid_t pw_gid;
14   char *pw_gecos;
15   char *pw_dir;
16   char *pw_shell;
17 };
18
19 #define getpwuid(i) NULL
20