dxx-rebirth/arch/win32/mono.c
2006-03-20 16:43:15 +00:00

14 lines
221 B
C
Executable file

#include <stdio.h>
#include <stdarg.h>
void mopen() {}
void mclose() {}
void _mprintf(short n, char * format, ...) {
#ifndef NMONO
va_list args;
va_start(args, format );
vprintf(format, args);
va_end(args);
#endif
}