Move extern variable prototype to input_autodetect.c

This commit is contained in:
twinaphex 2016-12-01 20:26:35 +01:00
parent 0aca3d04c0
commit 0bd94b9b54
2 changed files with 2 additions and 3 deletions

View File

@ -32,6 +32,8 @@
#include "../runloop.h"
#include "../verbosity.h"
extern const char* const input_builtin_autoconfs[];
/* Adds an index for devices with the same name,
* so they can be identified in the GUI. */
static void input_autoconfigure_joypad_reindex_devices(void)

View File

@ -20,7 +20,6 @@
#include <stdint.h>
#include <boolean.h>
#include <retro_miscellaneous.h>
typedef struct autoconfig_params
{
@ -36,6 +35,4 @@ bool input_autoconfigure_connect(autoconfig_params_t *params);
void input_autoconfigure_disconnect(unsigned i, const char *ident);
extern const char* const input_builtin_autoconfs[];
#endif