summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2008-05-09 09:41:42 +0000
committerEli Zaretskii <eliz@gnu.org>2008-05-09 09:41:42 +0000
commitde56235e504a5fc198cc733bd8917ac7b58a3640 (patch)
treee4de696406c7b8d367f12e52564121d43763f00b /nt
parent07f7980ac302dfe315d28923f0f2b77a42e80ece (diff)
downloademacs-de56235e504a5fc198cc733bd8917ac7b58a3640.tar.gz
(struct group): Add gr_gid member.
Diffstat (limited to 'nt')
-rwxr-xr-xnt/inc/grp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/nt/inc/grp.h b/nt/inc/grp.h
index 873c1ea7ad8..0c01251dcaa 100755
--- a/nt/inc/grp.h
+++ b/nt/inc/grp.h
@@ -25,6 +25,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
/* Emacs uses only gr_name */
struct group {
char *gr_name; /* group name */
+ gid_t gr_gid; /* group numerical ID */
};
struct group *getgrgid(gid_t);