summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2011-08-26 01:10:49 +0000
committerjoerg <joerg@NetBSD.org>2011-08-26 01:10:49 +0000
commit4216a77478421d5b83a0168bca0ed8317031bfb9 (patch)
treeaea10b58b70a1859bd006ba813a354f5ccabfa0e /include
parent9ef5638916bfbb8fba8f5119c182f0a6ea249523 (diff)
__assert and __assert13 are dead
Diffstat (limited to 'include')
-rw-r--r--include/assert.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/assert.h b/include/assert.h
index 95d30348e82..a2e8b0ab04a 100644
--- a/include/assert.h
+++ b/include/assert.h
@@ -1,4 +1,4 @@
-/* $NetBSD: assert.h,v 1.20 2008/11/02 14:27:44 christos Exp $ */
+/* $NetBSD: assert.h,v 1.21 2011/08/26 01:10:49 joerg Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -98,8 +98,8 @@
#ifndef __ASSERT_DECLARED
#define __ASSERT_DECLARED
__BEGIN_DECLS
-void __assert(const char *, int, const char *);
-void __assert13(const char *, int, const char *, const char *);
+__dead void __assert(const char *, int, const char *);
+__dead void __assert13(const char *, int, const char *, const char *);
void __diagassert(const char *, int, const char *);
void __diagassert13(const char *, int, const char *, const char *);
__END_DECLS