[ion] Homogenize type definitions to avoid LTO warnings

This commit is contained in:
Romain Goyet
2019-09-18 09:07:52 +02:00
committed by EmilieNumworks
parent 9db16997af
commit 9e59e8e38e
2 changed files with 3 additions and 2 deletions

View File

@@ -5,7 +5,8 @@
#include <regs/regs.h>
#include <ion.h>
extern void * InitialisationVector;
typedef void(*ISR)(void);
extern ISR InitialisationVector[];
// Public Ion methods

View File

@@ -4,7 +4,7 @@
#include <drivers/cache.h>
#include "../drivers/timing.h"
extern char _stack_end;
extern const void * _stack_end;
extern char _dfu_bootloader_flash_start;
extern char _dfu_bootloader_flash_end;