]> icculus.org git repositories - btb/d2x.git/blob - mono.c
8b35eddf9b73b1020071fa726fb64b63e8f031b0
[btb/d2x.git] / 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