some fixes:

- use Malloc, Realloc instead of malloc, realloc
- generate common for un-initialized bss
- removed null-reference
This commit is contained in:
ceriel
1988-10-20 12:55:02 +00:00
parent 0ba4588be1
commit ed651bbd04
3 changed files with 5 additions and 7 deletions

View File

@@ -169,7 +169,7 @@ c_row : %if ( to_change && strcmp( yytext, to_change) == 0)
| C_INSTR
[ c_special | c_simple]
| %if ( strcmp( yytext, to_change) == 0)
| %if ( to_change && strcmp( yytext, to_change) == 0)
DEF_C_INSTR { init_defaults( yytext);}
[ Dspecial | Dsimple] { handle_defaults();}