Files

13 lines
271 B
C
Raw Permalink Normal View History

2021-12-20 22:09:56 -06:00
#ifndef _ASSERT_H_
#define _ASSERT_H_
#if __STDC_VERSION__ >= 201112L
// The C11 way
#define static_assert(cond, msg) _Static_assert(cond, #msg)
#else
// The old, hacky way
#define static_assert(cond, msg) typedef char static_assertion_##msg[(cond)?1:-1]
#endif
#endif