diff options
-rw-r--r-- | usr.bin/tabs/tabs.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/usr.bin/tabs/tabs.c b/usr.bin/tabs/tabs.c index 9e017a0..e2a294b 100644 --- a/usr.bin/tabs/tabs.c +++ b/usr.bin/tabs/tabs.c @@ -29,13 +29,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/cdefs.h> -#ifndef lint -__COPYRIGHT("@(#) Copyright (c) 2008 \ -The NetBSD Foundation, inc. All rights reserved."); -__RCSID("$NetBSD: tabs.c,v 1.5 2019/02/01 08:29:04 mrg Exp $"); -#endif /* not lint */ - #include <sys/ioctl.h> #include <sys/types.h> @@ -45,7 +38,6 @@ __RCSID("$NetBSD: tabs.c,v 1.5 2019/02/01 08:29:04 mrg Exp $"); #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <term.h> #include <unistd.h> #define NSTOPS 20 @@ -67,7 +59,7 @@ static const struct tabspec tabspecs[] = { }; static const size_t ntabspecs = sizeof(tabspecs) / sizeof(tabspecs[0]); -__dead static void +static void usage(void) { fprintf(stderr, |