diff options
Diffstat (limited to 'libc/misc/assert')
-rw-r--r-- | libc/misc/assert/__assert.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/misc/assert/__assert.c b/libc/misc/assert/__assert.c index 2fd0b3ee4..4282812a5 100644 --- a/libc/misc/assert/__assert.c +++ b/libc/misc/assert/__assert.c @@ -42,6 +42,7 @@ libc_hidden_proto(stderr) #include <assert.h> #undef assert +libc_hidden_proto(__assert) #define ASSERT_SHOW_PROGNAME 1 @@ -68,3 +69,5 @@ void attribute_noreturn __assert(const char *assertion, const char * filename, } abort(); } + +libc_hidden_def(__assert) |