diff options
| author | joerg <joerg@NetBSD.org> | 2011-09-16 15:38:03 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2011-09-16 15:38:03 +0000 |
| commit | 0bf8553d3c69575f5a2c8288661d1c1feccc5fd8 (patch) | |
| tree | 2627b320e3464d065dcdcbe5786a6c26e2463068 /usr.bin/make/make.c | |
| parent | 6e78c32e77d41adb6477379ecc3d1900f6304435 (diff) | |
Use __dead consistently. If it doesn't exist, define it away.
Diffstat (limited to 'usr.bin/make/make.c')
| -rw-r--r-- | usr.bin/make/make.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c index 4e4d1c2f4b5..85f7d661c77 100644 --- a/usr.bin/make/make.c +++ b/usr.bin/make/make.c @@ -1,4 +1,4 @@ -/* $NetBSD: make.c,v 1.83 2010/11/25 21:31:09 christos Exp $ */ +/* $NetBSD: make.c,v 1.84 2011/09/16 15:38:04 joerg Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -69,14 +69,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: make.c,v 1.83 2010/11/25 21:31:09 christos Exp $"; +static char rcsid[] = "$NetBSD: make.c,v 1.84 2011/09/16 15:38:04 joerg Exp $"; #else #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)make.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: make.c,v 1.83 2010/11/25 21:31:09 christos Exp $"); +__RCSID("$NetBSD: make.c,v 1.84 2011/09/16 15:38:04 joerg Exp $"); #endif #endif /* not lint */ #endif @@ -139,7 +139,7 @@ static int MakeCheckOrder(void *, void *); static int MakeBuildChild(void *, void *); static int MakeBuildParent(void *, void *); -static void +__dead static void make_abort(GNode *gn, int line) { static int two = 2; |
