odyssey/sources/debugprintf.c

12 lines
169 B
C
Raw Normal View History

2020-07-26 07:58:15 +00:00
#include <machinarium.h>
#include <odyssey.h>
2020-07-26 07:58:15 +00:00
void od_dbg_printf(char *fmt, ...)
2020-07-26 07:58:15 +00:00
{
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
}