Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make Remove a __dead for an undead function (clang e...
details: https://anonhg.NetBSD.org/src/rev/14a5fb936437
branches: trunk
changeset: 779685:14a5fb936437
user: wiz <wiz%NetBSD.org@localhost>
date: Sun Jun 10 21:44:01 2012 +0000
description:
Remove a __dead for an undead function (clang errors out otherwise).
diffstat:
usr.bin/make/compat.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (35 lines):
diff -r 4d14c0f88f31 -r 14a5fb936437 usr.bin/make/compat.c
--- a/usr.bin/make/compat.c Sun Jun 10 17:45:59 2012 +0000
+++ b/usr.bin/make/compat.c Sun Jun 10 21:44:01 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: compat.c,v 1.88 2012/06/05 17:31:04 sjg Exp $ */
+/* $NetBSD: compat.c,v 1.89 2012/06/10 21:44:01 wiz Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: compat.c,v 1.88 2012/06/05 17:31:04 sjg Exp $";
+static char rcsid[] = "$NetBSD: compat.c,v 1.89 2012/06/10 21:44:01 wiz Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: compat.c,v 1.88 2012/06/05 17:31:04 sjg Exp $");
+__RCSID("$NetBSD: compat.c,v 1.89 2012/06/10 21:44:01 wiz Exp $");
#endif
#endif /* not lint */
#endif
@@ -121,7 +121,7 @@
static GNode *curTarg = NULL;
static GNode *ENDNode;
-static void CompatInterrupt(int) __dead;
+static void CompatInterrupt(int);
static void
Compat_Init(void)
Home |
Main Index |
Thread Index |
Old Index