10 lines
166 B
C
10 lines
166 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void)
|
|
{
|
|
if (system("man ls") == -1)
|
|
fprintf(stderr, "Could not create child process\n");
|
|
return 0;
|
|
}
|