Convert consecutive FSF copyright years to ranges.
[bpt/emacs.git] / nt / inc / grp.h
CommitLineData
80586d89 1/* Replacement grp.h file for building GNU Emacs on Windows.
5df4f04c 2
73b0cd50 3Copyright (C) 2003-2011
5df4f04c 4 Free Software Foundation, Inc.
80586d89
LH
5
6This file is part of GNU Emacs.
7
eef0be9e 8GNU Emacs is free software: you can redistribute it and/or modify
80586d89 9it under the terms of the GNU General Public License as published by
eef0be9e
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
80586d89
LH
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
eef0be9e 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
80586d89
LH
20
21#ifndef _GRP_H
22#define _GRP_H
23
24#include <pwd.h> /* gid_t defined here */
25
26/* Emacs uses only gr_name */
27struct group {
28 char *gr_name; /* group name */
de56235e 29 gid_t gr_gid; /* group numerical ID */
80586d89
LH
30};
31
32struct group *getgrgid(gid_t);
33
34#endif /* _GRP_H */
def6201d 35