install C version of _doprnt
[unix-history] / usr / src / lib / libc / gen / getpwuid.c
#ifndef lint
static char sccsid[] = "@(#)getpwuid.c 5.1 (Berkeley) %G%";
#endif not lint
#include <pwd.h>
struct passwd *
getpwuid(uid)
register uid;
{
register struct passwd *p;
struct passwd *getpwent();
setpwent();
while( (p = getpwent()) && p->pw_uid != uid );
endpwent();
return(p);
}