ScreenTranslator/StAssert.h

16 lines
247 B
C
Raw Normal View History

2015-06-30 00:26:33 +07:00
#ifndef ST_ASSERT_H
#define ST_ASSERT_H
#include <assert.h>
#if !defined(ST_ASSERT)
# if defined(ST_NO_ASSERT)
# define ST_ASSERT(CONDITION)
# else
2015-09-23 01:41:08 +07:00
# define ST_ASSERT(CONDITION) assert (CONDITION)
2015-06-30 00:26:33 +07:00
# endif
#endif
#endif // ST_ASSERT_H