Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_fixcpp/sys/include/ape/grp.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#ifndef __GRP
2
#define __GRP
3
#ifndef _POSIX_SOURCE
4
   This header file is not defined in pure ANSI
5
#endif
6
#pragma lib "/$M/lib/ape/libap.a"
7
#include <sys/types.h>
8
 
9
struct	group {
10
	char	*gr_name;
11
	gid_t	gr_gid;
12
	char	**gr_mem;
13
};
14
 
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
 
19
extern struct group *getgrgid(gid_t);
20
extern struct group *getgrnam(const char *);
21
 
22
#ifdef __cplusplus
23
}
24
#endif
25
 
26
#endif