diff options
Diffstat (limited to 'symbol.c')
-rw-r--r-- | symbol.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -30,7 +30,7 @@ newsymtab(void) Symtab *tab = emalloc(sizeof(Symtab)); tab->nsyms = 0; tab->syms = nil; - tab->io = currentsymtab ? globalIO() : 1; + tab->io = currentsymtab ? currentsymtab->io : 1; return tab; } @@ -47,9 +47,3 @@ freesymtab(Symtab *tab) free(tab->syms); free(tab); } - -vlong -globalIO(void) -{ - return currentsymtab->io; -}
\ No newline at end of file |