[libc] Add abort routine to replace old API.

abort routine will cause sig_xxx() reference.
This commit is contained in:
Bernard Xiong 2016-05-01 16:04:26 +08:00
parent 1436101b56
commit 06d3599d86
1 changed files with 5 additions and 0 deletions

View File

@ -447,3 +447,8 @@ void __libc_init_array(void)
{
/* we not use __libc init_aray to initialize C++ objects */
}
void abort(void)
{
return ;
}