From: Bart House Date: Sat, 2 Sep 2017 18:06:10 +0000 (-0700) Subject: Removing unused function which also contained coding error (calling putc instead... X-Git-Tag: NetHack-3.6.1_RC01~406 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1374d148d708a4ca8af11d4edb0d8371497e96bf;p=nethack Removing unused function which also contained coding error (calling putc instead of fputc). --- diff --git a/src/windows.c b/src/windows.c index 66b52b58b..af3d978cf 100644 --- a/src/windows.c +++ b/src/windows.c @@ -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;