Add exit() function just to prevent loads of the standard library from being included in the build.

This commit is contained in:
Richard Barry 2010-05-17 14:52:27 +00:00
parent 18d6c565e6
commit 4a5ea9e237

View file

@ -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( ;; );
}