]> icculus.org git repositories - btb/d2x.git/blob - arch/linux/mono.c
removed extra backslash
[btb/d2x.git] / arch / linux / mono.c
1 #include <stdio.h>
2 #include <stdarg.h>
3
4 #define MONO_IS_STDERR
5 //added 05/17/99 Matt Mueller - needed for editor build
6 int minit(void){return -1;}
7 //end addition -MM
8 void mopen( short n, short row, short col, short width, short height, char * title ) {}
9 void mclose(short n) {}
10
11 void _mprintf( short n, char * format, ... )
12 #ifdef MONO_IS_STDERR
13 {
14         va_list args;
15         va_start(args, format );
16         vfprintf(stderr, format, args);
17 }
18 #else
19 {}
20 #endif