mirror of git://sourceware.org/git/glibc.git
11 lines
334 B
C
11 lines
334 B
C
#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
|