aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/nsss/grp-def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nsss/grp-def.h')
-rw-r--r--src/include/nsss/grp-def.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/nsss/grp-def.h b/src/include/nsss/grp-def.h
new file mode 100644
index 0000000..0a6db50
--- /dev/null
+++ b/src/include/nsss/grp-def.h
@@ -0,0 +1,16 @@
+/* ISC license. */
+
+#ifndef NSSS_GRP_DEF_H
+#define NSSS_GRP_DEF_H
+
+#include <sys/types.h>
+
+struct group
+{
+ char *gr_name ;
+ char *gr_passwd ;
+ gid_t gr_gid ;
+ char **gr_mem ;
+} ;
+
+#endif