30a21adab83e2fd3ccdd5f748c7b61df010cb5a5
[external/syslinux.git] / com32 / include / dprintf.h
1 /*
2  * dprintf.h
3  */
4
5 #ifndef _DPRINTF_H
6 #define _DPRINTF_H
7
8 #ifdef DEBUG
9
10 #include <stdio.h>
11
12 void dprintf(const char *, ...);
13 void vdprintf(const char *, va_list);
14
15 #else
16
17 #define dprintf(fmt, ...)       ((void)(0))
18 #define vdprintf(fmt, ap)       ((void)(0))
19
20 #endif /* DEBUG */
21
22 #endif /* _DPRINTF_H */