summaryrefslogblamecommitdiff
path: root/include/assert.h
blob: ab745db18022aeda15f1d04ba6d4ef93c82b4f9d (plain) (tree)
1
2
3
4
5
6
7
8
                     
 
             
 


                         
                                                                                      





                  
                                                                   



                  
#include <features.h>

#undef assert

#ifdef NDEBUG
#define	assert(x) (void)0
#else
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
#endif

#ifdef __cplusplus
extern "C" {
#endif

void __assert_fail (const char *, const char *, int, const char *);

#ifdef __cplusplus
}
#endif