From 7ccc71bb59a17c377f5117519d18259ca158e83d Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Thu, 11 Sep 2014 22:22:39 -0400
Subject: [PATCH] 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
---
 retroarch_logger.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/retroarch_logger.h b/retroarch_logger.h
index 7fbf8a1e30..731efe68bd 100644
--- a/retroarch_logger.h
+++ b/retroarch_logger.h
@@ -18,6 +18,7 @@
 #define __RARCH_LOGGER_H
 
 #include <stdarg.h>
+#include <stdio.h>
 
 #if defined(RARCH_DUMMY_LOG)
 #define LOG_FILE (stderr)