rtos: fix iar vector table type

Following IAR guide for RAM vector table, this is in the code snippet there:

```
extern void * __vector_RAM_table [];
void main(void)
```

Found in https://github.com/ARMmbed/mbed-os/pull/12547
pull/12696/head
Martin Kojtal 2020-03-25 10:06:08 +00:00
parent b62fdaed1f
commit 5cbf666347
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
#pragma section="CSTACK"
#pragma section="HEAP"
extern void *__vector_table;
extern void *__vector_table[];
extern int __low_level_init(void);
extern void __iar_data_init3(void);
extern __weak void __iar_init_core(void);