pkgsrc/games/zombies/patches/patch-ab
2016-03-30 08:40:53 +00:00

31 lines
597 B
Text

$NetBSD: patch-ab,v 1.3 2016/03/30 08:40:53 jperkin Exp $
Don't try to use CE, just call clrtoeol() instead.
--- main.c.orig 1999-06-26 13:48:39.000000000 +0000
+++ main.c
@@ -212,21 +212,11 @@ quit(int ignored)
#ifndef _putchar
extern int _putchar();
#endif
- extern char *CE;
mvcur(0, COLS - 1, LINES - 1, 0);
-#ifndef SYSV
- if (CE) { /* try to clear to end of line */
- _puts(CE);
- endwin();
- }
- else { /* otherwise move done a line */
-#endif
- endwin();
- putchar('\n');
-#ifndef SYSV
- }
-#endif
+ clrtoeol();
+ endwin();
+ putchar('\n');
exit(0);
/* NOTREACHED */
}