]> icculus.org git repositories - btb/d2x.git/blob - arch/win32/mono.c
include newmenu header (for FAIL macro)
[btb/d2x.git] / arch / win32 / mono.c
1 #include <stdio.h>
2 #include <stdarg.h>
3 void mopen() {}
4 void mclose() {}
5 void _mprintf(short n, char * format, ...) {
6 #ifndef NMONO
7         va_list args;
8         va_start(args, format );
9         vprintf(format, args);
10         va_end(args);
11 #endif
12 }
13