Revert SA_NOPUTCHAR - the pmax was the only port using it and the new

pmax bootblocks provide a putchar().
This commit is contained in:
simonb 1999-03-23 22:25:31 +00:00
parent c9e3b47a0f
commit 9913b7202b
1 changed files with 1 additions and 6 deletions

View File

@ -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 @@ twiddle()
{
static int pos;
#ifdef SA_NOPUTCHAR
printf("%c\b", TWIDDLE_CHARS[pos++ & 3]);
#else
putchar(TWIDDLE_CHARS[pos++ & 3]);
putchar('\b');
#endif
}