mirror of
https://github.com/encounter/oot-vc.git
synced 2026-03-30 11:33:51 -07:00
e554e4a8d6
* add libc headers * removed the older libc files
13 lines
275 B
C
13 lines
275 B
C
#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
|