wrap unused function, ber_log_puts(), in #if 0

This commit is contained in:
Ben Collins 2000-09-15 02:51:34 +00:00
parent 7fa88b2a27
commit ed7f95edb0

View File

@ -98,7 +98,7 @@ int ber_pvt_log_printf( int errlvl, int loglvl, const char *fmt, ... )
(*ber_pvt_log_print)( buf );
return 1;
}
#if 0
static int ber_log_puts(int errlvl, int loglvl, char *buf)
{
assert( buf != NULL );
@ -110,7 +110,7 @@ static int ber_log_puts(int errlvl, int loglvl, char *buf)
(*ber_pvt_log_print)( buf );
return 1;
}
#endif
/*
* Print arbitrary stuff, for debugging.
*/