code clean

This commit is contained in:
zy
2023-12-05 04:42:53 -05:00
parent 2050806caf
commit 76213bc8bc
2 changed files with 6 additions and 5 deletions

View File

@@ -43,7 +43,7 @@ void *customFunction1(void *n) {
while (1) {
sleep(1);
} // never return, keep stack
return NULL;
// return NULL;
} else {
printf("Calling customFunction2\n");
customFunction2(num-1);
@@ -59,7 +59,7 @@ void customFunction2(int n) {
while (1) {
sleep(1);
} // never return, keep stack
return NULL;
// return NULL;
}
customFunction3(n-1);
}
@@ -72,7 +72,7 @@ void customFunction3(int n) {
while (1) {
sleep(1);
} // never return, keep stack
return NULL;
// return NULL;
}
customFunction2(n-1);
}