From 2d27251d2197d6669ad28a92852d51d44d799d92 Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Mon, 18 May 2015 18:09:16 +0800 Subject: [PATCH] [Kernel] fix the Keil MDK compiling warning. --- src/components.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components.c b/src/components.c index 3ffe09c882..783ae37ab1 100644 --- a/src/components.c +++ b/src/components.c @@ -29,6 +29,7 @@ * in some IDEs. */ +#include #include #ifdef RT_USING_COMPONENTS_INIT @@ -130,6 +131,8 @@ void rt_hw_board_init(void); #ifdef __CC_ARM extern int $Super$$main(void); +int rtthread_startup(void); + /* re-define main function */ int $Sub$$main(void) { @@ -215,7 +218,7 @@ int rtthread_startup(void) rt_system_scheduler_start(); /* never reach here */ - return ; + return 0; } #endif #endif