mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 03:32:28 +00:00
11 lines
222 B
Text
11 lines
222 B
Text
#include "os/Debug.hpp"
|
|
#include <cstdio>
|
|
#include <cstdarg>
|
|
|
|
void OsOutputDebugString(const char* format, ...) {
|
|
// TODO
|
|
va_list args;
|
|
va_start(args, format);
|
|
vfprintf(stderr, format, args);
|
|
return;
|
|
}
|