mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add exit() function just to prevent loads of the standard library from being included in the build.
This commit is contained in:
parent
18d6c565e6
commit
4a5ea9e237
|
@ -284,5 +284,11 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
/* Provide an exit function to prevent a whole load of standard library functions
|
||||||
|
being brought into the build. */
|
||||||
|
void exit( int status )
|
||||||
|
{
|
||||||
|
for( ;; );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue