retroarch_logger: Include header stdio.h
Prior to this, if this file was included in a source file, but stdio was not, then a compile error would result, as the log calls internally print to stderr, which is defined within stdio.h
This commit is contained in:
parent
4d20e28990
commit
7ccc71bb59
|
@ -18,6 +18,7 @@
|
|||
#define __RARCH_LOGGER_H
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#if defined(RARCH_DUMMY_LOG)
|
||||
#define LOG_FILE (stderr)
|
||||
|
|
Loading…
Reference in New Issue