WinUAE/logging.cpp
2015-09-05 10:44:57 +02:00

12 lines
245 B
C++

#include "uae/log.h"
#include <stdio.h>
#include <stdarg.h>
void UAECALL uae_log(const char *format, ...)
{
/* Redirect UAE_LOG_VA_ARGS_FULL to use write_log instead */
#define uae_log write_log
UAE_LOG_VA_ARGS_FULL(format);
#undef uae_log
}