made arg_error dependant on a DEBUG constant
authorceriel <none@none>
Thu, 2 Feb 1989 11:42:53 +0000 (11:42 +0000)
committerceriel <none@none>
Thu, 2 Feb 1989 11:42:53 +0000 (11:42 +0000)
mach/sun3/ce/mach.c
mach/sun3/ce/mach.h

index 59e7636..52da887 100644 (file)
@@ -5,12 +5,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 c9d3875..f46ee01 100644 (file)
@@ -41,3 +41,7 @@
 
 
 #define small( x)      ( 1 <= (x) && (x) <= 8)
+
+#ifndef DEBUG
+#define arg_error(s, i)
+#endif