Added Self to Write After Approval
[deliverable/binutils-gdb.git] / include / mpw / pwd.h
1 #ifndef __pwd_h
2 #define __pwd_h
3
4 #include <sys/types.h>
5
6 struct passwd {
7 char *pw_name;
8 uid_t pw_uid;
9 gid_t pw_gid;
10 char *pw_dir;
11 char *pw_shell;
12 char *pw_passwd;
13 };
14
15 #endif /* ! __pwd_h */
This page took 0.044586 seconds and 4 git commands to generate.