summaryrefslogtreecommitdiff
path: root/src/nbdebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nbdebug.c')
-rw-r--r--src/nbdebug.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/nbdebug.c b/src/nbdebug.c
index 3dfe86ae9..20125ca51 100644
--- a/src/nbdebug.c
+++ b/src/nbdebug.c
@@ -33,7 +33,6 @@ FILE *nb_debug = NULL;
u_int nb_dlevel = 0; /* nb_debug verbosity level */
void nbdb(char *, ...);
-void nbtrace(char *, ...);
static int lookup(char *);
#ifdef USE_NB_ERRORHANDLER
@@ -100,25 +99,6 @@ nbdebug_log_init(
} /* end nbdebug_log_init */
-
-
-void
-nbtrace(
- char *fmt,
- ...)
-{
- va_list ap;
-
- if (nb_debug!= NULL && (nb_dlevel & (NB_TRACE | NB_TRACE_VERBOSE))) {
- va_start(ap, fmt);
- vfprintf(nb_debug, fmt, ap);
- va_end(ap);
- fflush(nb_debug);
- }
-
-} /* end nbtrace */
-
-
void
nbdbg(
char *fmt,
@@ -136,23 +116,6 @@ nbdbg(
} /* end nbdbg */
-void
-nbprt(
- char *fmt,
- ...)
-{
- va_list ap;
-
- if (nb_debug != NULL && nb_dlevel & NB_PRINT) {
- va_start(ap, fmt);
- vfprintf(nb_debug, fmt, ap);
- va_end(ap);
- fflush(nb_debug);
- }
-
-} /* end nbprt */
-
-
static int
lookup(
char *file)