mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 05:41:37 +00:00
10 lines
152 B
C
10 lines
152 B
C
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main() {
|
|
char* argv[] = {"./fork", NULL};
|
|
execv(argv[0], argv);
|
|
return 0;
|
|
}
|