blob: b61ba7b1cc078f02b74706f9e29ec49a9e677fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#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 *
getttynam(tty)
char *tty;
{
register struct ttyent *t;
setttyent();
while (t = getttyent()) {
if (strcmp(tty, t->ty_name) == 0)
break;
}
endttyent();
return (t);
}
|