dxx-rebirth/arch/linux/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

21 lines
440 B
C

#include <stdio.h>
#include <stdarg.h>
#define MONO_IS_STDERR
//added 05/17/99 Matt Mueller - needed for editor build
int minit(void){return -1;}
//end addition -MM
void mopen( short n, short row, short col, short width, short height, char * title ) {}
void mclose(short n) {}
void _mprintf( short n, char * format, ... )
#ifdef MONO_IS_STDERR
{
va_list args;
va_start(args, format );
vfprintf(stderr, format, args);
}
#else
{}
#endif