Commit 17652b1a authored by Jan Maria Matejka's avatar Jan Maria Matejka
Browse files

c99 construction removed

parent 0ae4a719
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -649,7 +649,8 @@ FI_INST_INTERPRET(call) {
}

FI_INST_INTERPRET(clear_local_vars) {
  for (struct symbol *sym = what->a1.p; sym != NULL; sym = sym->aux2)
  struct symbol *sym;
  for (sym = what->a1.p; sym != NULL; sym = sym->aux2)
    ((struct f_val *) sym->def)->type = T_VOID;
  RET_VOID;
}