123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef __PJ_COMPAT_ASSERT_H__
- #define __PJ_COMPAT_ASSERT_H__
- #if defined(PJ_HAS_ASSERT_H) && PJ_HAS_ASSERT_H != 0
- # include <assert.h>
- #else
- # warning "assert() is not implemented"
- # define assert(expr)
- #endif
- #endif
|