mirror of https://github.com/yandex/odyssey.git
12 lines
148 B
C
12 lines
148 B
C
![]() |
|
||
|
#include "debugprintf.h"
|
||
|
|
||
|
void
|
||
|
od_dbg_printf(char *fmt, ...)
|
||
|
{
|
||
|
va_list args;
|
||
|
va_start(args, fmt);
|
||
|
vfprintf(stderr, fmt, args);
|
||
|
va_end(args);
|
||
|
}
|