Files
kolibrios/programs/develop/ktcc/trunk/libc.obj/samples/system_test.c

15 lines
257 B
C

#include <stdlib.h>
#include <stdio.h>
#include <sys/ksys.h>
#define EXIT_CODE_FORMAT "Exit Code: %d\n"
int main()
{
printf(EXIT_CODE_FORMAT, system("ls ."));
_ksys_delay(500);
printf(EXIT_CODE_FORMAT, system("/sys/sysmon"));
return 0;
}