2010-11-04 00:46:47 +03:00
|
|
|
/*
|
2012-07-19 22:11:40 +04:00
|
|
|
* Copyright 2004-2012 Haiku, Inc. All Rights Reserved.
|
2010-11-04 00:46:47 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2004-06-30 06:34:10 +04:00
|
|
|
#ifndef _ASSERT_H_
|
|
|
|
#define _ASSERT_H_
|
|
|
|
|
2010-11-04 00:46:47 +03:00
|
|
|
|
2004-06-30 06:34:10 +04:00
|
|
|
#undef assert
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2008-05-11 01:30:34 +04:00
|
|
|
/* defining NDEBUG disables assert() functionality */
|
2004-06-30 06:34:10 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern void __assert_fail(const char *assertion, const char *file,
|
2011-05-21 17:15:46 +04:00
|
|
|
unsigned int line, const char *function)
|
|
|
|
__attribute__ ((noreturn));
|
2004-06-30 06:34:10 +04:00
|
|
|
|
|
|
|
extern void __assert_perror_fail(int error, const char *file,
|
2011-05-21 17:15:46 +04:00
|
|
|
unsigned int line, const char *function)
|
|
|
|
__attribute__ ((noreturn));
|
2004-06-30 06:34:10 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define assert(assertion) \
|
|
|
|
((assertion) ? (void)0 : __assert_fail(#assertion, __FILE__, __LINE__, __PRETTY_FUNCTION__))
|
|
|
|
|
2008-05-11 01:30:34 +04:00
|
|
|
#else /* NDEBUG */
|
|
|
|
# define assert(condition) ((void)0)
|
2004-06-30 06:34:10 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _ASSERT_H_ */
|