blob: 848c9310c1ff2a8e6bdda5f971d55c45cbb96491 [file] [log] [blame] [edit]
#ifndef _FIXUP_ASSERT_H
#define _FIXUP_ASSERT_H
#include_next <assert.h>
/* Without C11 compiler support it is not possible to implement static_assert */
#undef static_assert
#define static_assert(_cond, msg)
#endif