mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 10:10:57 +00:00
header include cleanups
This commit is contained in:
parent
075aea2289
commit
e6524f961a
@ -15,6 +15,7 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <compat/strl.h>
|
||||
|
@ -14,6 +14,7 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -26,6 +26,9 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#ifdef ANDROID
|
||||
#include <android/log.h>
|
||||
#endif
|
||||
@ -60,7 +63,7 @@ bool *verbosity_get_ptr(void)
|
||||
return &main_verbosity;
|
||||
}
|
||||
|
||||
FILE *retro_main_log_file(void)
|
||||
void *retro_main_log_file(void)
|
||||
{
|
||||
return log_file;
|
||||
}
|
||||
|
@ -16,7 +16,6 @@
|
||||
#ifndef __RARCH_VERBOSITY_H
|
||||
#define __RARCH_VERBOSITY_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <boolean.h>
|
||||
@ -32,7 +31,7 @@ void verbosity_disable(void);
|
||||
|
||||
bool *verbosity_get_ptr(void);
|
||||
|
||||
FILE *retro_main_log_file(void);
|
||||
void *retro_main_log_file(void);
|
||||
|
||||
void retro_main_log_file_deinit(void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user