From 350aac765d3e94494f9b3db3a16f3b09d454bd5b Mon Sep 17 00:00:00 2001 From: dholland Date: Sun, 3 Feb 2008 21:24:58 +0000 Subject: Once upon a time, larn 12.0 had functions named getchar() and putchar() that conflicted with libc. We changed them to lgetchar() and xputchar() respectively; larn 12.2 changed them to ttgetch() and ttputch(). After reflecting on this for a while I've decided to adopt the larn 12.2 names; not so much for compatibility but for consistency going forward. So, massrename them. Also make ttputch() static. --- larn/help.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'larn/help.c') diff --git a/larn/help.c b/larn/help.c index 47350d10..05e7656b 100644 --- a/larn/help.c +++ b/larn/help.c @@ -1,9 +1,9 @@ -/* $NetBSD: help.c,v 1.6 2008/02/03 19:20:41 dholland Exp $ */ +/* $NetBSD: help.c,v 1.7 2008/02/03 21:24:58 dholland Exp $ */ /* help.c Larn is copyrighted 1986 by Noah Morgan. */ #include #ifndef lint -__RCSID("$NetBSD: help.c,v 1.6 2008/02/03 19:20:41 dholland Exp $"); +__RCSID("$NetBSD: help.c,v 1.7 2008/02/03 21:24:58 dholland Exp $"); #endif /* not lint */ #include @@ -54,7 +54,7 @@ help() lprcat(" for more help ---- "); i = 0; while ((i != ' ') && (i != '\n') && (i != '\33')) - i = lgetchar(); + i = ttgetch(); if ((i == '\n') || (i == '\33')) { lrclose(); setscroll(); @@ -105,7 +105,7 @@ retcont() lprcat("Press "); standout("return"); lprcat(" to continue: "); - while (lgetchar() != '\n'); + while (ttgetch() != '\n'); setscroll(); } -- cgit v1.2.3-56-ge451