Move headers to verbosity.c

This commit is contained in:
twinaphex 2015-11-30 04:49:28 +01:00
parent 21a9bd13a6
commit 263e1a335d
2 changed files with 17 additions and 18 deletions

View File

@ -13,6 +13,22 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef _XBOX1
#include <xtl.h>
#endif
#ifdef __MACH__
#include <TargetConditionals.h>
#if TARGET_IPHONE_SIMULATOR
#include <stdio.h>
#else
#include <asl.h>
#endif
#endif
#ifdef ANDROID
#include <android/log.h>
#endif
#if defined(HAVE_FILE_LOGGER)
#define LOG_FILE (retro_main_log_file())

View File

@ -16,26 +16,9 @@
#ifndef __RARCH_VERBOSITY_H
#define __RARCH_VERBOSITY_H
#ifdef _XBOX1
#include <xtl.h>
#endif
#include <stdio.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef __MACH__
#include <TargetConditionals.h>
#if TARGET_IPHONE_SIMULATOR
#include <stdio.h>
#else
#include <asl.h>
#endif
#endif
#ifdef ANDROID
#include <android/log.h>
#endif
#include <retro_inline.h>
#include <boolean.h>
#include <compat/posix_string.h>
#include <compat/strl.h>