8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / lib / libbc / libc / gen / common / getttynam.c
blobb61ba7b1cc078f02b74706f9e29ec49a9e677fa1
1 #pragma ident "%Z%%M% %I% %E% SMI"
2 /* from UCB 5.2 3/9/86 */
3 /*
4 * Copyright (c) 1983 Regents of the University of California.
5 * All rights reserved. The Berkeley software License Agreement
6 * specifies the terms and conditions for redistribution.
7 */
9 #include <ttyent.h>
11 struct ttyent *
12 getttynam(tty)
13 char *tty;
15 register struct ttyent *t;
17 setttyent();
18 while (t = getttyent()) {
19 if (strcmp(tty, t->ty_name) == 0)
20 break;
22 endttyent();
23 return (t);