mirror of
https://github.com/LIV2/WinUAE.git
synced 2025-12-06 00:12:52 +00:00
12 lines
245 B
C++
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
|
|
}
|