19990502 sourceware import

This commit is contained in:
Richard Henderson
1999-05-03 07:29:06 +00:00
commit a3acbf4694
265 changed files with 76608 additions and 0 deletions

15
include/mpw/pwd.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef __pwd_h
#define __pwd_h
#include <sys/types.h>
struct passwd {
char *pw_name;
uid_t pw_uid;
gid_t pw_gid;
char *pw_dir;
char *pw_shell;
char *pw_passwd;
};
#endif /* ! __pwd_h */