Removing unused function which also contained coding error (calling putc instead of fputc).

This commit is contained in:
Bart House
2017-09-02 11:06:10 -07:00
committed by Pasi Kallinen
parent 78bee88b83
commit 1374d148d7

View File

@@ -1169,15 +1169,6 @@ dump_close_log()
}
}
void
dump_putc(ch)
int ch;
{
/* Not very efficient, but we mostly don't care. */
if (dumplog_file)
putc(ch, dumplog_file);
}
void
dump_forward_putstr(win, attr, str, no_forward)
winid win;