BSD 3 development
[unix-history] / .ref-BSD-2 / upgrade / libretro / getpwuid.c
#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);
}