ScreenTranslator/StAssert.h

16 lines
246 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
# define ST_ASSERT(CONDITION) assert(CONDITION)
# endif
#endif
#endif // ST_ASSERT_H