diff options
author | Toomas Soome <tsoome@me.com> | 2020-02-08 20:24:21 +0200 |
---|---|---|
committer | Toomas Soome <tsoome@me.com> | 2020-03-18 19:36:25 +0200 |
commit | 97b5374547d500fded52d886ceba8a9962af0527 (patch) | |
tree | 58133eb5538d122ed076707c9abe35530356cc0c /usr/src/lib/libbc/libc/gen/common/getttynam.c | |
parent | 20d3bf629e3e91ea61dee8153d5bc47daeab26b0 (diff) | |
download | illumos-gate-97b5374547d500fded52d886ceba8a9962af0527.tar.gz |
12292 retire libbc
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: Andy Stormont <astormont@racktopsystems.com>
Reviewed by: Alexander Eremin <aeremin@tintri.com>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src/lib/libbc/libc/gen/common/getttynam.c')
-rw-r--r-- | usr/src/lib/libbc/libc/gen/common/getttynam.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/usr/src/lib/libbc/libc/gen/common/getttynam.c b/usr/src/lib/libbc/libc/gen/common/getttynam.c deleted file mode 100644 index b61ba7b1cc..0000000000 --- a/usr/src/lib/libbc/libc/gen/common/getttynam.c +++ /dev/null @@ -1,24 +0,0 @@ -#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); -} |