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.c
1
/*
2
* $Id$
3
*
4
* debug print
5
*
6
*/
7
8
#include "dprint.h"
9
10
#include <stdarg.h>
11
#include <stdio.h>
12
13
void dprint(char * format, ...)
14
{
15
va_list ap;
16
17
va_start(ap, format);
18
vfprintf(stderr,format,ap);
19
fflush(stderr);
20
va_end(ap);
21
}