home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Distributions / ucb / 2bsd.tar.gz / 2bsd.tar / upgrade / include / pwd.h < prev    next >
C/C++ Source or Header  |  1979-04-19  |  162b  |  12 lines

  1. struct    passwd {
  2.     char    *pw_name;
  3.     char    *pw_passwd;
  4.     int    pw_uid;
  5.     int    pw_gid;
  6.     int    pw_quota;
  7.     char    *pw_comment;
  8.     char    *pw_gecos;
  9.     char    *pw_dir;
  10.     char    *pw_shell;
  11. };
  12.