diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-21 22:19:34 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-21 22:19:34 +0000 |
commit | 032714a5673c35e3fe6a725388178fd5e779d037 (patch) | |
tree | e7e225ab7c26c1b013f356e22d5b0ee6da6933ac | |
parent | 974a9158f283686be76ad5a1d3507120bc3a68a4 (diff) |
\n is handled by cnputc(), don't print \r
-rw-r--r-- | sys/arch/i386/stand/libsa/dev_i386.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/dev_i386.c b/sys/arch/i386/stand/libsa/dev_i386.c index e42af67ad7e..13ee9ec0910 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.17 1997/08/13 14:24:02 niklas Exp $ */ +/* $OpenBSD: dev_i386.c,v 1.18 1997/08/21 22:19:33 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -136,7 +136,6 @@ putchar(c) while(++pos % 8); break; case '\n': - cnputc('\r'); case '\r': cnputc(c); pos=0; |