Files
RedBear-OS/tests/stdlib/system.c
T

7 lines
100 B
C

#include <stdlib.h>
int main(void) {
system("echo test of system");
return EXIT_SUCCESS;
}