made arg_error dependant on DEBUG

This commit is contained in:
ceriel 1989-02-02 12:49:21 +00:00
parent 0291c897be
commit 1daac3c5d1
2 changed files with 6 additions and 0 deletions

View 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
/*

View file

@ -42,3 +42,7 @@
#define small( x) ( 1 <= (x) && (x) <= 8)
#ifndef DEBUG
#define arg_error(s,i)
#endif