projects
/
sip-router
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial revision
[sip-router]
/
dprint.h
1
/*
2
* $Id$
3
*/
4
5
6
#ifndef dprint_h
7
#define dprint_h
8
9
10
11
void dprint (char* format, ...);
12
13
#ifdef NO_DEBUG
14
#define DPrint(fmt, args...)
15
#else
16
#define DPrint(fmt,args...) dprint(fmt, ## args);
17
#endif
18
19
20
#endif /* ifndef dprint_h */