7929041ebe
fully registered. (This is the second try, the first import ignored .info files but not .info-* files, for some reason. I'm going to make this consistent.) Reviewed by: core Approved for: 2.2
16 lines
202 B
C
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 */
|