forked from KolibriOS/kolibrios
15 lines
257 B
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;
|
|
} |