kopia lustrzana https://gitlab.com/sane-project/backends
14 wiersze
205 B
C
14 wiersze
205 B
C
|
#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
|