aboutsummaryrefslogtreecommitdiff
path: root/include/mpw/pwd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mpw/pwd.h')
-rw-r--r--include/mpw/pwd.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/mpw/pwd.h b/include/mpw/pwd.h
new file mode 100644
index 0000000..2d4fb70
--- /dev/null
+++ b/include/mpw/pwd.h
@@ -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 */