made arg_error dependant on DEBUG
authorceriel <none@none>
Thu, 2 Feb 1989 12:49:21 +0000 (12:49 +0000)
committerceriel <none@none>
Thu, 2 Feb 1989 12:49:21 +0000 (12:49 +0000)
mach/m68020/ce/mach.c
mach/m68020/ce/mach.h

index d4e7e83..f829f44 100644 (file)
@@ -4,12 +4,14 @@
 #include <system.h>
 
 
+#ifdef DEBUG
 arg_error( s, arg)
 char *s;
 int arg;
 {
        fprint( STDERR, "arg_error %s %d\n", s, arg);
 }
+#endif
 
 
 /*
index 1cbd4f9..6a19f6b 100644 (file)
@@ -42,3 +42,7 @@
 
 
 #define small( x)      ( 1 <= (x) && (x) <= 8)
+
+#ifndef DEBUG
+#define arg_error(s,i)
+#endif