mirror of https://github.com/ARMmbed/mbed-os.git
[LPC4088] Corrected an invalid header file dependecy.
parent
1448b871c1
commit
e8b09cbc2d
|
|
@ -13,7 +13,7 @@
|
|||
You can override this function in your code to reserve a number of bytes
|
||||
for the stack.
|
||||
*/
|
||||
extern "C" WEAK uint32_t __reserved_stack_size();
|
||||
extern "C" WEAK uint32_t __reserved_stack_size() {
|
||||
extern "C" __attribute__((weak)) uint32_t __reserved_stack_size();
|
||||
extern "C" __attribute__((weak)) uint32_t __reserved_stack_size() {
|
||||
return 0; // return 0 to indicate that nothing is reserved
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
#define SYS_HELPER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "toolchain.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
|||
Loading…
Reference in New Issue