
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@387 ec53bebd-3082-4978-b11e-865c3cabbd6b
18 lines
240 B
C
18 lines
240 B
C
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#ifndef HAVE_VSYSLOG
|
|
|
|
#include <syslog.h>
|
|
#include <stdarg.h>
|
|
|
|
void vsyslog(int pri, const char *fmt, va_list ap)
|
|
{
|
|
char buf[10240];
|
|
vsprintf(buf, fmt, ap);
|
|
syslog(pri, buf);
|
|
}
|
|
|
|
#endif
|