dxx-rebirth/arch/win32/mono.c
Bradley Bell 9bd1ba7c47 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:30:16 +00:00

14 lines
221 B
C

#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
}