[Zion] Add an early debug method without allocations.

This commit is contained in:
Drew Galbraith 2023-11-05 08:48:41 -08:00
parent 85564b018d
commit 4af19d010f
3 changed files with 8 additions and 2 deletions

View file

@ -132,6 +132,8 @@ void dbg_internal(const char* fmt, va_list args) {
} // namespace
void early_dbgln(const char* str) { dbgcstr(str); }
void dbg(const char* fmt, ...) {
va_list arg;
va_start(arg, fmt);