summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/expand/expand.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/usr.bin/expand/expand.c b/usr.bin/expand/expand.c
index c69fda1..8e4c279 100644
--- a/usr.bin/expand/expand.c
+++ b/usr.bin/expand/expand.c
@@ -29,21 +29,9 @@
* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
-#ifndef lint
-__COPYRIGHT("@(#) Copyright (c) 1980, 1993\
- The Regents of the University of California. All rights reserved.");
-#endif /* not lint */
-
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)expand.c 8.1 (Berkeley) 6/9/93";
-#endif
-__RCSID("$NetBSD: expand.c,v 1.14 2016/09/05 00:40:28 sevan Exp $");
-#endif /* not lint */
-
#include <stdio.h>
#include <stdlib.h>
+#include <bsd/stdlib.h>
#include <ctype.h>
#include <unistd.h>
#include <err.h>
@@ -55,7 +43,7 @@ size_t nstops;
size_t tabstops[100];
static void getstops(const char *);
-static void usage(void) __dead;
+static void usage(void) __attribute__((noreturn));
int
main(int argc, char *argv[])