Adding upstream version 4.00~pre53+dfsg.
[syslinux-debian/hramrach.git] / com32 / include / dprintf.h
blob30a21adab83e2fd3ccdd5f748c7b61df010cb5a5
1 /*
2 * dprintf.h
3 */
5 #ifndef _DPRINTF_H
6 #define _DPRINTF_H
8 #ifdef DEBUG
10 #include <stdio.h>
12 void dprintf(const char *, ...);
13 void vdprintf(const char *, va_list);
15 #else
17 #define dprintf(fmt, ...) ((void)(0))
18 #define vdprintf(fmt, ap) ((void)(0))
20 #endif /* DEBUG */
22 #endif /* _DPRINTF_H */