aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
blob: d1e2987ba3e7c1004487bcacd858ade03944a12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <assert.h>
#include <stdarg.h>

#include "debug.h"
#include "log.h"

#ifdef FIO_INC_DEBUG
void __dprint(int type, const char *str, ...)
{
	va_list args;

	assert(type < FD_DEBUG_MAX);

	va_start(args, str);
	log_prevalist(type, str, args);
	va_end(args);
}
#endif