(* Copyright (C) 1990, Digital Equipment Corporation. *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) (* Last modified on Wed Oct 28 16:04:44 MET 1992 by preschern *) (* modified on Mon Mar 09 19:02:29 PST 1992 by muller *) MODULE Upwd; FROM Ctypes IMPORT char_star, short, int; FROM Utypes IMPORT uid_t; (*** ***) (*** getpwent, getpwuid, getpwnam, setpwent, endpwent(2) - get password file entry ***) PROCEDURE getpwent (): struct_passwd_star = BEGIN <* ASSERT FALSE *> END getpwent; PROCEDURE getpwuid (uid: int): struct_passwd_star = BEGIN <* ASSERT FALSE *> END getpwuid; PROCEDURE getpwnam (name: char_star): struct_passwd_star = BEGIN <* ASSERT FALSE *> END getpwnam; PROCEDURE setpwent(): int = BEGIN <* ASSERT FALSE *> END setpwent; PROCEDURE endpwent(): int = BEGIN <* ASSERT FALSE *> END endpwent; BEGIN END Upwd.