repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 4.00~pre53+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
include
/
dprintf.h
blob
30a21adab83e2fd3ccdd5f748c7b61df010cb5a5
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 */