dxx-rebirth/arch/linux/mono.c
md2211 d393f32eed * Removed executable flag on most files
* Reverted value of SOUND_MAX_VOLUME
2007-09-21 19:06:05 +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