Add stub for dplog to allow compiling when optimization is not turned on.

Closes PR bin/20545.
This commit is contained in:
darcy 2003-03-29 10:56:52 +00:00
parent 347085b57d
commit 3f774f2b1f
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: xutil.c,v 1.7 2003/03/09 01:38:50 christos Exp $ */
/* $NetBSD: xutil.c,v 1.8 2003/03/29 10:56:52 darcy Exp $ */
/*
* Copyright (c) 1997-2003 Erez Zadok
@ -395,6 +395,10 @@ dplog(const char *fmt, ...)
real_plog(XLOG_DEBUG, fmt, ap);
va_end(ap);
}
#else
void
dplog(const char *fmt, ...)
{ }
#endif /* DEBUG */