summaryrefslogtreecommitdiffstats
path: root/include/nonunix/grp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/nonunix/grp.h')
-rw-r--r--include/nonunix/grp.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/nonunix/grp.h b/include/nonunix/grp.h
new file mode 100644
index 0000000..ef019bd
--- /dev/null
+++ b/include/nonunix/grp.h
@@ -0,0 +1,17 @@
+
+#pragma once
+
+typedef unsigned short __gid_t;
+__inline __gid_t getgid(void){return 0;}
+__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
+