Fix compiler warning in tmr.c

Fix compiler warning: implicit declaration of function 'system_soft_wdt_feed'
This commit is contained in:
dnc40085 2015-11-04 17:55:09 -08:00
parent 6b8c7f4b8e
commit 75849f79ab
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ extern uint32_t platform_tmr_exists(uint32_t t);
extern uint32_t system_rtc_clock_cali_proc(); extern uint32_t system_rtc_clock_cali_proc();
extern uint32_t system_get_rtc_time(); extern uint32_t system_get_rtc_time();
extern void system_restart(); extern void system_restart();
extern void system_soft_wdt_feed();
//in fact lua_State is constant, it's pointless to pass it around //in fact lua_State is constant, it's pointless to pass it around
//but hey, whatever, I'll just pass it, still we waste 28B here //but hey, whatever, I'll just pass it, still we waste 28B here