Luna/libluna/src/DebugLog.cpp

10 lines
158 B
C++
Raw Normal View History

2022-12-22 17:00:35 +00:00
#include <luna/DebugLog.h>
void dbgln(const char* format, ...)
{
va_list ap;
va_start(ap, format);
debug_log_impl(format, ap);
va_end(ap);
2023-01-02 12:07:29 +00:00
}