#ifndef lint static char sccsid[] = "@(#)getgrgid.c 5.1 (Berkeley) 06/05/85"; #endif not lint #include struct group * getgrgid(gid) register gid; { register struct group *p; struct group *getgrent(); setgrent(); while( (p = getgrent()) && p->gr_gid != gid ); endgrent(); return(p); }