mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-04 15:33:34 +08:00
16 lines
276 B
C
16 lines
276 B
C
#ifndef GROUP_MEMBER_H_
|
|
# define GROUP_MEMBER_H_ 1
|
|
|
|
# ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
# endif
|
|
|
|
int
|
|
group_member PARAMS ((gid_t));
|
|
|
|
#endif /* GROUP_MEMBER_H_ */
|