Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/lib/libsa Revert SA_NOPUTCHAR - the pmax was the only po...



details:   https://anonhg.NetBSD.org/src/rev/ac278525107d
branches:  trunk
changeset: 467376:ac278525107d
user:      simonb <simonb%NetBSD.org@localhost>
date:      Tue Mar 23 22:25:31 1999 +0000

description:
Revert SA_NOPUTCHAR - the pmax was the only port using it and the new
pmax bootblocks provide a putchar().

diffstat:

 sys/lib/libsa/twiddle.c |  7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diffs (21 lines):

diff -r e53ce1ccf5b4 -r ac278525107d sys/lib/libsa/twiddle.c
--- a/sys/lib/libsa/twiddle.c   Tue Mar 23 22:23:11 1999 +0000
+++ b/sys/lib/libsa/twiddle.c   Tue Mar 23 22:25:31 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: twiddle.c,v 1.2 1999/02/22 07:53:52 simonb Exp $       */
+/*     $NetBSD: twiddle.c,v 1.3 1999/03/23 22:25:31 simonb Exp $       */
 
 /*-
  * Copyright (c) 1993
@@ -70,11 +70,6 @@
 {
        static int pos;
 
-#ifdef SA_NOPUTCHAR
-       printf("%c\b", TWIDDLE_CHARS[pos++ & 3]);
-#else
        putchar(TWIDDLE_CHARS[pos++ & 3]);
        putchar('\b');
-#endif
-
 }



Home | Main Index | Thread Index | Old Index