Subversion Repositories tendra.SVN

Rev

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

Rev Author Line No. Line
72 7u83 1
#ifndef __TENDRA_PWD_H
2
#define __TENDRA_PWD_H
3
 
4
typedef int uid_t;
5
typedef int gid_t;
6
typedef unsigned int time_t;
7
 
8
 
9
struct passwd {
10
	char	*pw_name;		/* user name */
11
	char	*pw_passwd;		/* encrypted password */
12
	uid_t	pw_uid;			/* user uid */
13
	gid_t	pw_gid;			/* user gid */
14
	time_t	pw_change;		/* password change time */
15
	char	*pw_class;		/* user access class */
16
	char	*pw_gecos;		/* Honeywell login info */
17
	char	*pw_dir;		/* home directory */
18
	char	*pw_shell;		/* default shell */
19
	time_t	pw_expire;		/* account expiration */
20
	int	pw_fields;		/* internal: fields filled in */
21
};
22
 
23
#endif