toaruos/libc/system.c
2018-03-01 12:55:28 +09:00

23 lines
332 B
C

#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <wait.h>
int system(const char * command) {
char * args[] = {
"/bin/sh",
"-c",
(char *)command,
NULL,
};
pid_t pid = fork();
if (!pid) {
execvp(args[0], args);
exit(1);
} else {
int status;
waitpid(pid, &status, 0);
return status;
}
}