提交 ae2d414c 编写于 作者: mysterywolf's avatar mysterywolf

add system() for IAR

上级 0ce0e2c2
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
* Change Logs: * Change Logs:
* Date Author Notes * Date Author Notes
* 2021-02-13 Meco Man implement exit() and abort() * 2021-02-13 Meco Man implement exit() and abort()
* 2021-02-20 Meco Man add system()
*/ */
#include <rtthread.h> #include <rtthread.h>
...@@ -16,3 +17,9 @@ void __exit (int status) ...@@ -16,3 +17,9 @@ void __exit (int status)
__rt_libc_exit(status); __rt_libc_exit(status);
while(1); while(1);
} }
int system(const char * string)
{
extern int __rt_libc_system(const char *string);
return __rt_libc_system(string);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册