FORKgit add .git add .!
This commit is contained in:
Binary file not shown.
@@ -1,12 +1,12 @@
|
||||
#include "syscall.h"
|
||||
#include <unistd.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
||||
int fk = 0;
|
||||
if ((fk = fork()) > 0) {
|
||||
return fk;
|
||||
if (fork() == 0) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user