-/*
- * incore version of /etc/passwd
- */
-struct home {
- char *h_name; /* user name */
- uid_t h_uid; /* user id */
- gid_t h_gid; /* user's group */
- char *h_home; /* user's home directory */
- char *h_shell; /* user's shell */
- int h_ngrps; /* number of groups this user belongs to */
- struct home *h_next; /* next home in list */
-};
-
-#ifndef MMDFMTS
-struct home *seek_home ();
-#endif /* MMDFMTS */
-