mirror of
https://github.com/pret/pokestadium.git
synced 2026-09-26 05:21:12 -04:00
13 lines
281 B
C
13 lines
281 B
C
#ifndef __ASSERT_H__
|
|
#define __ASSERT_H__
|
|
|
|
#ifdef NDEBUG
|
|
#undef assert
|
|
#define assert(EX) ((void)0)
|
|
#else
|
|
extern void __assert(const char *, const char *, int);
|
|
#define assert(EX) ((EX)?((void)0):__assert("EX", __FILE__, __LINE__))
|
|
#endif /* NDEBUG */
|
|
|
|
#endif /* !__ASSERT_H__ */
|