diff --git a/components/libc/compilers/dlib/syscalls.c b/components/libc/compilers/dlib/syscalls.c index 346a766d53bcdfa63fd507120ac0d1349529a7d1..007ea76bd1f299659f5ab7313b1fdcb9849e682d 100644 --- a/components/libc/compilers/dlib/syscalls.c +++ b/components/libc/compilers/dlib/syscalls.c @@ -6,6 +6,7 @@ * Change Logs: * Date Author Notes * 2021-02-13 Meco Man implement exit() and abort() + * 2021-02-20 Meco Man add system() */ #include @@ -16,3 +17,9 @@ void __exit (int status) __rt_libc_exit(status); while(1); } + +int system(const char * string) +{ + extern int __rt_libc_system(const char *string); + return __rt_libc_system(string); +}