From 44e5d647d2e1c22fe484da38223b75f71283d524 Mon Sep 17 00:00:00 2001 From: Joseph Julicher Date: Mon, 17 Aug 2020 17:28:48 -0700 Subject: [PATCH] removed externs from new prototypes --- include/task.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/task.h b/include/task.h index 01b365919..f52257bbb 100644 --- a/include/task.h +++ b/include/task.h @@ -1547,7 +1547,7 @@ * * This hook function is called in the system tick handler after any OS work is completed. */ - extern void vApplicationTickHook( void ); /*lint !e526 Symbol not defined as it is an application callback. */ + void vApplicationTickHook( void ); /*lint !e526 Symbol not defined as it is an application callback. */ #endif /* Callback function prototypes. --------------------------*/ @@ -1578,7 +1578,7 @@ void vApplicationStackOverflowHook( TaskHandle_t xTask, * and TCB. * https://www.freertos.org/a00110.html#configSUPPORT_STATIC_ALLOCATION */ - extern void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer, + void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer, StackType_t ** ppxIdleTaskStackBuffer, uint32_t * pulIdleTaskStackSize ); /*lint !e526 Symbol not defined as it is an application callback. */