4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 11:00:04 +08:00
1999-05-03 07:29:06 +00:00

16 lines
202 B
C

#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 */