dxx-rebirth/arch/win32/mono.c

14 lines
221 B
C
Raw Normal View History

2006-03-20 17:12:09 +00:00
#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
}