blob: 30afabf94de7c94ef5d168302718c47cd02b3bbb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <assert/assert.h>
extern void __assert_fail_internal (__const char *__assertion,
__const char *__file,
unsigned int __line,
__const char *__function)
__attribute__ ((__noreturn__)) attribute_hidden;
#if defined SHARED && !defined NOT_IN_libc
# define __assert_fail __assert_fail_internal
#endif
|