summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-06-14 05:06:51 +0000
committerbde <bde@FreeBSD.org>1995-06-14 05:06:51 +0000
commit89206a06f3a8775fc3bd17138879347f9b313854 (patch)
treeace3ee3f9bcefdcab68bb3ccd108f5c1f93895c8 /sys/i386
parentf8e6606128bcc93320771e5556e6c3b9da228444 (diff)
downloadFreeBSD-src-89206a06f3a8775fc3bd17138879347f9b313854.zip
FreeBSD-src-89206a06f3a8775fc3bd17138879347f9b313854.tar.gz
Replace \n\r by \n in error messages.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/math_emulate.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/i386/i386/math_emulate.c b/sys/i386/i386/math_emulate.c
index d2ae7eb..392a189 100644
--- a/sys/i386/i386/math_emulate.c
+++ b/sys/i386/i386/math_emulate.c
@@ -6,7 +6,7 @@
* [expediant "port" of linux 8087 emulator to 386BSD, with apologies -wfj]
*
* from: 386BSD 0.1
- * $Id: math_emulate.c,v 1.11 1995/05/11 19:26:09 rgrimes Exp $
+ * $Id: math_emulate.c,v 1.12 1995/05/30 07:59:35 rgrimes Exp $
*/
/*
@@ -94,7 +94,7 @@ math_emulate(struct trapframe * info)
oldeip = info->tf_eip;
/* 0x001f means user code space */
if ((u_short)info->tf_cs != 0x001F) {
- printf("math_emulate: %04x:%08lx\n\r", (u_short)info->tf_cs,
+ printf("math_emulate: %04x:%08lx\n", (u_short)info->tf_cs,
oldeip);
panic("?Math emulation needed in kernel?");
}
@@ -123,7 +123,7 @@ math_emulate(struct trapframe * info)
ftst(PST(0));
return(0);
case 0x1e5: /* fxam */
- printf("fxam not implemented\n\r");
+ printf("fxam not implemented\n");
math_abort(info,SIGILL);
case 0x1e6: case 0x1e7: /* fldenv */
math_abort(info,SIGILL);
@@ -291,7 +291,7 @@ for fcom , ??? ATS */
real_to_real(&tmp,&ST(code & 7));
return(0);
case 0xb8: /* ffree */
- printf("ffree not implemented\n\r");
+ printf("ffree not implemented\n");
math_abort(info,SIGILL);
case 0xb9: /* fstp ???? where is the pop ? ATS */
fxchg(&ST(0),&ST(code & 7));
@@ -348,7 +348,7 @@ for fcom , ??? ATS */
fpop();
return(0);
case 0xf8: /* fild 16-bit mem ???? ATS */
- printf("ffree not implemented\n\r");
+ printf("ffree not implemented\n");
math_abort(info,SIGILL);
fpop();
return(0);
@@ -523,7 +523,7 @@ for fcom , ??? ATS */
real_to_real(&tmp,&ST(0));
return(0);
}
- printf("Unknown math-insns: %04x:%08x %04x\n\r",(u_short)info->tf_cs,
+ printf("Unknown math-insns: %04x:%08x %04x\n",(u_short)info->tf_cs,
info->tf_eip,code);
math_abort(info,SIGFPE);
}
OpenPOWER on IntegriCloud