summaryrefslogtreecommitdiffstats
path: root/include/mpw/grp.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>1999-05-03 07:29:06 +0000
committerRichard Henderson <rth@redhat.com>1999-05-03 07:29:06 +0000
commita3acbf46947e52ff596461a4cf6f539884c9dbbd (patch)
treeef93cefb82fdb4d8f2639e166e277474d9b2acab /include/mpw/grp.h
downloadcygnal-a3acbf46947e52ff596461a4cf6f539884c9dbbd.tar.gz
cygnal-a3acbf46947e52ff596461a4cf6f539884c9dbbd.tar.bz2
cygnal-a3acbf46947e52ff596461a4cf6f539884c9dbbd.zip
19990502 sourceware importbinu_ss_19990502
Diffstat (limited to 'include/mpw/grp.h')
-rw-r--r--include/mpw/grp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/mpw/grp.h b/include/mpw/grp.h
new file mode 100644
index 000000000..faf2c6a6b
--- /dev/null
+++ b/include/mpw/grp.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "sys/types.h"
+
+struct group {
+ char *gr_name;
+ gid_t gr_gid;
+ char *gr_passwd;
+ char **gr_mem;
+};