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