home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / utility / text / emacssrc.lha / emacs-18.58 / src / unix / pwd.h next >
Encoding:
C/C++ Source or Header  |  1991-12-07  |  235 b   |  12 lines

  1. #define getpwuid(uid) ((struct passwd *)0)
  2. #define getpwnam(uid) ((struct passwd *)0)
  3. struct passwd {
  4.   char pw_name[1];
  5.   char pw_passwd[1];
  6.   short pw_uid;
  7.   short pw_gid;
  8.   char pw_gecos[1];
  9.   char pw_dir[1];
  10.   char pw_shell[1];
  11. };
  12.