TD2 II.4 Various fixes on stack allocation

This commit is contained in:
Yorick Barbanneau 2021-11-19 16:52:57 +01:00
parent 3877e32b59
commit c3892a2fa7
4 changed files with 13 additions and 11 deletions

View file

@ -14,7 +14,7 @@ void f(int c) {
int main(){
int i;
for (i=65; i < 91; i++){
for (i=65; i < 68; i++){
ThreadCreate(f, i);
}
// PutString("end of main()\n");