diff options
-rw-r--r-- | usr.bin/nohup/nohup.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/usr.bin/nohup/nohup.c b/usr.bin/nohup/nohup.c index d177c51..7b3a9cd 100644 --- a/usr.bin/nohup/nohup.c +++ b/usr.bin/nohup/nohup.c @@ -29,19 +29,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -#ifndef lint -__COPYRIGHT("@(#) Copyright (c) 1989\ - The Regents of the University of California. All rights reserved."); -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)nohup.c 5.4 (Berkeley) 6/1/90"; -#endif -__RCSID("$NetBSD: nohup.c,v 1.15 2011/09/06 18:24:15 joerg Exp $"); -#endif /* not lint */ - #include <sys/param.h> #include <sys/file.h> #include <sys/stat.h> @@ -54,7 +41,7 @@ __RCSID("$NetBSD: nohup.c,v 1.15 2011/09/06 18:24:15 joerg Exp $"); #include <errno.h> static void dofile(void); -__dead static void usage(void); +static void usage(void); /* nohup shall exit with one of the following values: 126 - The utility was found but could not be invoked. |