diff options
Diffstat (limited to 'assert')
-rw-r--r-- | assert/__assert.c | 4 | ||||
-rw-r--r-- | assert/assert.c | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/assert/__assert.c b/assert/__assert.c index b72ea9f567..94f34d1561 100644 --- a/assert/__assert.c +++ b/assert/__assert.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000 Free Software Foundation, Inc. +/* Copyright (C) 2000, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,5 +23,5 @@ void __assert (const char *assertion, const char *file, int line) { - __assert_fail (assertion, file, line, (const char *) 0); + INTUSE(__assert_fail) (assertion, file, line, (const char *) 0); } diff --git a/assert/assert.c b/assert/assert.c index aa20f1f6a0..453d2af8a3 100644 --- a/assert/assert.c +++ b/assert/assert.c @@ -79,3 +79,4 @@ __assert_fail (const char *assertion, const char *file, unsigned int line, abort (); } +INTDEF(__assert_fail) |