From 09cc81f5b5926ba296ceed4aa7e9f6f76c133986 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 10 Nov 1988 13:46:53 +0000 Subject: [PATCH] Use the system module for error messages --- mach/m68020/ce/mach.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mach/m68020/ce/mach.c b/mach/m68020/ce/mach.c index 1566e2f12..52139ffbf 100644 --- a/mach/m68020/ce/mach.c +++ b/mach/m68020/ce/mach.c @@ -1,13 +1,13 @@ #include "mach.h" #include -#include +#include arg_error( s, arg) char *s; int arg; { - fprintf( stderr, "arg_error %s %d\n", s, arg); + fprint( STDERR, "arg_error %s %d\n", s, arg); } @@ -37,7 +37,7 @@ static int been_here; gen4((FOUR_BYTES) 0); if ( !been_here++) { - fputs("Warning : dummy float-constant(s)\n", stderr); + fprint(STDERR, "Warning : dummy float-constant(s)\n"); } #else #define IEEEFLOAT -- 2.34.1