mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 20:32:28 +00:00
12 lines
222 B
Text
12 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;
|
||
|
|
}
|