summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cvs/macintosh/pwd.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/cvs/macintosh/pwd.h')
-rw-r--r--gnu/usr.bin/cvs/macintosh/pwd.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/usr.bin/cvs/macintosh/pwd.h b/gnu/usr.bin/cvs/macintosh/pwd.h
new file mode 100644
index 00000000000..d451dbc0e4d
--- /dev/null
+++ b/gnu/usr.bin/cvs/macintosh/pwd.h
@@ -0,0 +1,37 @@
+/*********************************************************************
+Project : GUSI - Grand Unified Socket Interface
+File : pwd.h - Provide mission header ioctl.h for CodeWarrior
+Author : Matthias Neeracher
+Language : MPW C/C++
+$Log: pwd.h,v $
+Revision 1.1 1996/10/18 03:36:59 tholo
+Initial revision
+
+Revision 1.1 1996/07/26 20:08:29 kingdon
+Check in new macintosh directory from Mike Ladwig. I believe that this
+checkin contains exactly the tarfile he sent to me, with the exception
+of the files SIOUX.c SIOUXGlobals.h SIOUXMenus.h SIOUXWindows.h which
+are copyright Metrowerks and which we therefore cannot distribute.
+
+*********************************************************************/
+
+#include <sys/types.h>
+
+struct group { /* see getgrent(3) */
+ char *gr_name;
+ char *gr_passwd;
+ gid_t gr_gid;
+ char **gr_mem;
+};
+
+struct passwd {
+ char *pw_name;
+ char *pw_passwd;
+ uid_t pw_uid;
+ gid_t pw_gid;
+ char *pw_age;
+ char *pw_comment;
+ char *pw_gecos;
+ char *pw_dir;
+ char *pw_shell;
+}; \ No newline at end of file