M fs/comp/c/fgen.fs => fs/comp/c/fgen.fs +1 -1
@@ 173,7 173,7 @@ current ' parseStatement realias
\ '{' is already parsed
: parseFunctionBody ( cdecl -- )
- 0 to _locvars 0 to _initcode to _curfunc _litarena :reserve ( )
+ 0 to _locvars 0 to _initcode to _curfunc ( )
STORAGE_RS to@! curstorage >r
begin nextt dup parseType while ( tok type ) nip parseDeclLine repeat ( tok )
to nexttputback r> to curstorage
M fs/comp/c/type.fs => fs/comp/c/type.fs +1 -1
@@ 38,7 38,7 @@ $b const TYPE_UINT
STORAGE_MEM value curstorage
0 value curstatic \ is current definition "static"?
-: _arena curstorage STORAGE_MEM <> curstatic or if _tarena else _parena then ;
+: _arena curstorage STORAGE_MEM < curstatic or if _tarena else _parena then ;
8 stringlist typenames "void" "char" "short" "int" "" "" "" ""