diff --git a/mach/sun3/ce/mach.c b/mach/sun3/ce/mach.c index 59e763628..52da8875d 100644 --- a/mach/sun3/ce/mach.c +++ b/mach/sun3/ce/mach.c @@ -5,12 +5,14 @@ #include +#ifdef DEBUG arg_error( s, arg) char *s; int arg; { fprint( STDERR, "arg_error %s %d\n", s, arg); } +#endif /* diff --git a/mach/sun3/ce/mach.h b/mach/sun3/ce/mach.h index c9d3875e5..f46ee01bb 100644 --- a/mach/sun3/ce/mach.h +++ b/mach/sun3/ce/mach.h @@ -41,3 +41,7 @@ #define small( x) ( 1 <= (x) && (x) <= 8) + +#ifndef DEBUG +#define arg_error(s, i) +#endif