BSD 3 development
[unix-history] / usr / src / cmd / csh / getpwuid.c
CommitLineData
1b926d66
BJ
1/* Copyright (c) 1979 Regents of the University of California */
2#include <pwd.h>
3
4struct passwd *
5getpwuid(uid)
6register uid;
7{
8 register struct passwd *p;
9 struct passwd *getpwent();
10
11 setpwent();
12 while( (p = getpwent()) && p->pw_uid != uid );
13 endpwent();
14 return(p);
15}