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:
Lioncash 2014-09-11 22:22:39 -04:00
parent 4d20e28990
commit 7ccc71bb59

View File

@ -18,6 +18,7 @@
#define __RARCH_LOGGER_H #define __RARCH_LOGGER_H
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h>
#if defined(RARCH_DUMMY_LOG) #if defined(RARCH_DUMMY_LOG)
#define LOG_FILE (stderr) #define LOG_FILE (stderr)