rt-thread/components/libc/compilers/dlib/syscalls.c

26 lines
558 B
C
Raw Normal View History

/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-02-13 Meco Man implement exit() and abort()
2021-02-20 11:57:41 +08:00
* 2021-02-20 Meco Man add system()
*/
2021-02-13 15:16:53 +08:00
#include <rtthread.h>
2021-02-20 11:31:58 +08:00
/* for exit() and abort() */
void __exit (int status)
{
2021-02-17 23:50:12 +08:00
extern void __rt_libc_exit(int status);
__rt_libc_exit(status);
2021-02-17 00:18:49 +08:00
while(1);
}
2021-02-20 11:57:41 +08:00
int system(const char * string)
{
extern int __rt_libc_system(const char *string);
return __rt_libc_system(string);
}