#ifndef NONSTD_ASSERT_H #define NONSTD_ASSERT_H #include "internal/debugbreak.h" #define assert(c) ((c) ? (void)0 : debug_break()) #endif