#pragma ident "%Z%%M% %I% %E% SMI"
/* from UCB 5.2 3/9/86 */
/*
* Copyright (c) 1983 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#include <ttyent.h>
struct ttyent *
char *tty;
{
register struct ttyent *t;
setttyent();
while (t = getttyent()) {
break;
}
endttyent();
return (t);
}