Files
perfaware/code/duffle/analysis.h
T
2026-08-06 19:04:14 -04:00

18 lines
279 B
C

#ifdef INTELLISENSE_DIRECTIVES
# pragma once
# include "dsl.h"
# if _WIN32
# include "win32.h"
# endif
#endif
#pragma region Debug
#define debug_trap() __builtin_debugtrap()
#if BUILD_DEBUG
FI_ void assert(U8 cond);
#else
#define assert(cond)
#endif
#pragma endregion Debug