date and time created 80/12/21 16:50:40 by wnj
[unix-history] / usr / src / lib / libc / gen / getpwuid.c
/* @(#)getpwuid.c 4.1 (Berkeley) %G% */
#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);
}