Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>1999-05-03 11:29:06 +0400
committerRichard Henderson <rth@redhat.com>1999-05-03 11:29:06 +0400
commita3acbf46947e52ff596461a4cf6f539884c9dbbd (patch)
treeef93cefb82fdb4d8f2639e166e277474d9b2acab /include/mpw/pwd.h
19990502 sourceware importbinu_ss_19990502
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 000000000..2d4fb7040
--- /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 */