diff options
-rw-r--r-- | assert/assert.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/assert/assert.c b/assert/assert.c index cbbed21002..332ff7e096 100644 --- a/assert/assert.c +++ b/assert/assert.c @@ -42,6 +42,7 @@ extern const char *__progname; # include FATAL_PREPARE_INCLUDE #endif +#undef __assert_fail void __assert_fail (const char *assertion, const char *file, unsigned int line, const char *function) @@ -81,4 +82,4 @@ __assert_fail (const char *assertion, const char *file, unsigned int line, abort (); } -libc_hidden_def(__assert_fail) +INTDEF(__assert_fail) |