Use the system module for error messages

This commit is contained in:
ceriel 1988-11-10 13:46:53 +00:00
parent 19dad4482b
commit 09cc81f5b5

View file

@ -1,13 +1,13 @@
#include "mach.h" #include "mach.h"
#include <back.h> #include <back.h>
#include <stdio.h> #include <system.h>
arg_error( s, arg) arg_error( s, arg)
char *s; char *s;
int arg; 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); gen4((FOUR_BYTES) 0);
if ( !been_here++) if ( !been_here++)
{ {
fputs("Warning : dummy float-constant(s)\n", stderr); fprint(STDERR, "Warning : dummy float-constant(s)\n");
} }
#else #else
#define IEEEFLOAT #define IEEEFLOAT