heading to laptop

This commit is contained in:
2026-07-07 18:52:22 -05:00
parent 177a0b8fe9
commit e42ee8eb85
13 changed files with 68 additions and 96 deletions

View File

@@ -4,9 +4,10 @@ int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
if (!fork()) {
exit(1);
int fk = 0;
if ((fk = fork()) > 0) {
return fk;
}
return 0;
}