blob: d451dbc0e4dcee380d1eeff7183086b88a9d7744 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*********************************************************************
Project : GUSI - Grand Unified Socket Interface
File : pwd.h - Provide mission header ioctl.h for CodeWarrior
Author : Matthias Neeracher
Language : MPW C/C++
$Log: pwd.h,v $
Revision 1.1 1996/10/18 03:36:59 tholo
Initial revision
Revision 1.1 1996/07/26 20:08:29 kingdon
Check in new macintosh directory from Mike Ladwig. I believe that this
checkin contains exactly the tarfile he sent to me, with the exception
of the files SIOUX.c SIOUXGlobals.h SIOUXMenus.h SIOUXWindows.h which
are copyright Metrowerks and which we therefore cannot distribute.
*********************************************************************/
#include <sys/types.h>
struct group { /* see getgrent(3) */
char *gr_name;
char *gr_passwd;
gid_t gr_gid;
char **gr_mem;
};
struct passwd {
char *pw_name;
char *pw_passwd;
uid_t pw_uid;
gid_t pw_gid;
char *pw_age;
char *pw_comment;
char *pw_gecos;
char *pw_dir;
char *pw_shell;
};
|