10 lines
161 B
C
10 lines
161 B
C
#ifndef TEMPORALZ_ASSERT_H
|
|
#define TEMPORALZ_ASSERT_H
|
|
|
|
#ifndef static_assert
|
|
#define static_assert _Static_assert
|
|
#endif
|
|
|
|
#define assert(expr) ((void)0)
|
|
|
|
#endif
|