summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand/libsa/dev_i386.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/i386/stand/libsa/dev_i386.c')
-rw-r--r--sys/arch/i386/stand/libsa/dev_i386.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/libsa/dev_i386.c b/sys/arch/i386/stand/libsa/dev_i386.c
index f433784d56f..92ce1f99cfd 100644
--- a/sys/arch/i386/stand/libsa/dev_i386.c
+++ b/sys/arch/i386/stand/libsa/dev_i386.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dev_i386.c,v 1.10 1997/04/23 06:49:07 mickey Exp $ */
+/* $OpenBSD: dev_i386.c,v 1.11 1997/05/29 04:35:29 mickey Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -113,6 +113,11 @@ putchar(c)
static int pos = 0;
switch(c) {
+ case '\b': /* BS erases */
+ putc('\b');
+ putc(' ');
+ putc('\b');
+ break;
case '\t':
do
putc(' ');