Files
RedBear-OS/tests/exec.c
T
2018-06-30 09:26:46 +02:00

10 lines
172 B
C

#include <unistd.h>
#include <stdio.h>
int main(int argc, char** argv) {
char *const args[1] = {"arg"};
execv("write", args);
perror("execv");
return 0;
}