blob: fcb83960df14e3543bdbbd15b3fedec0f5920bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "../include/sane/config.h"
#ifndef HAVE_SYSLOG
#include <stdio.h>
void syslog(int priority, const char *format, va_list args)
{
printf("%d ", priority);
printf(format, args);
}
#endif
|