Fix the multiple definitions error.

I don't know why it worked before like that.. but after updating devkitARM etc it seems to cause compilation issues.
This commit is contained in:
StackZ
2020-05-11 02:24:12 +02:00
parent 0d0647038b
commit 7ce398cc23
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ typedef enum
LOOP_EXIT, /*!< Terminate looping */
} loop_status_t;
bool isTransfering;
char ftp_accepted_connection[50], ftp_file_transfer[100];
extern bool isTransfering;
extern char ftp_accepted_connection[50], ftp_file_transfer[100];
int ftp_init(void);
loop_status_t ftp_loop(void);