summaryrefslogtreecommitdiff
path: root/com32/include/dprintf.h
blob: 30a21adab83e2fd3ccdd5f748c7b61df010cb5a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * dprintf.h
 */

#ifndef _DPRINTF_H
#define _DPRINTF_H

#ifdef DEBUG

#include <stdio.h>

void dprintf(const char *, ...);
void vdprintf(const char *, va_list);

#else

#define dprintf(fmt, ...)	((void)(0))
#define vdprintf(fmt, ap)	((void)(0))

#endif /* DEBUG */

#endif /* _DPRINTF_H */