made arg_error dependant on DEBUG
This commit is contained in:
parent
0291c897be
commit
1daac3c5d1
|
@ -4,12 +4,14 @@
|
||||||
#include <system.h>
|
#include <system.h>
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
arg_error( s, arg)
|
arg_error( s, arg)
|
||||||
char *s;
|
char *s;
|
||||||
int arg;
|
int arg;
|
||||||
{
|
{
|
||||||
fprint( STDERR, "arg_error %s %d\n", s, arg);
|
fprint( STDERR, "arg_error %s %d\n", s, arg);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -42,3 +42,7 @@
|
||||||
|
|
||||||
|
|
||||||
#define small( x) ( 1 <= (x) && (x) <= 8)
|
#define small( x) ( 1 <= (x) && (x) <= 8)
|
||||||
|
|
||||||
|
#ifndef DEBUG
|
||||||
|
#define arg_error(s,i)
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue