Current Path : /usr/lib/syslinux/com32/include/ |
Current File : //usr/lib/syslinux/com32/include/dprintf.h |
/* * 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 */