summaryrefslogtreecommitdiff
path: root/sys/arch/sun3/stand/libsa/promcons.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-12-31 16:35:43 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-12-31 16:35:43 +0000
commit5bd8a66c32f475b5f4a897da8aef1878cc2e768e (patch)
tree90bdb8cb64032fcc765f8865bae36013cff255a7 /sys/arch/sun3/stand/libsa/promcons.c
parent4d298384bbeb0ddbaf45d1ececd54291a3e88796 (diff)
amiga and sun3 turned out to not be y2k+3 compliant here. Remove them, as
well as the few userland tools which were only used on these platforms.
Diffstat (limited to 'sys/arch/sun3/stand/libsa/promcons.c')
-rw-r--r--sys/arch/sun3/stand/libsa/promcons.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/sys/arch/sun3/stand/libsa/promcons.c b/sys/arch/sun3/stand/libsa/promcons.c
deleted file mode 100644
index 195c7dcba45..00000000000
--- a/sys/arch/sun3/stand/libsa/promcons.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* $OpenBSD: promcons.c,v 1.2 2001/07/04 08:33:51 niklas Exp $ */
-
-
-#include <stdarg.h>
-#include <sys/types.h>
-#include <machine/mon.h>
-
-int
-getchar()
-{
- return ( (*romp->getChar)() );
-}
-
-int
-peekchar()
-{
- return ( (*romp->mayGet)() );
-}
-
-void
-putchar(c)
- int c;
-{
- if (c == '\n')
- (*romp->putChar)('\r');
- (*romp->putChar)(c);
-}
-