summaryrefslogtreecommitdiffstats
path: root/include/mingw/grp.h
blob: 67f62d94695ee042ef3b4a5ab0f9d3400b1d87d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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