Whamcloud - gitweb
e2fsck: copy badblocks when copying fs
[tools/e2fsprogs.git] / include / mingw / grp.h
1
2 #pragma once
3
4 #include <sys/types.h>
5
6 __inline struct group * getgrnam(char* g){return 0;}
7
8 struct group
9   {
10     char *gr_name;
11     char *gr_passwd;
12     __gid_t gr_gid;
13     char **gr_mem;
14   };
15
16 #define getgrgid(i) NULL