1 #include "../include/sane/config.h" 2 3 #ifndef HAVE_VSYSLOG 4 5 #include <stdio.h> 6 #include <stdarg.h> 7 vsyslog(int priority, const char *format, va_list args)8void vsyslog(int priority, const char *format, va_list args) 9 { 10 char buf[1024]; 11 vsnprintf(buf, sizeof(buf), format, args); 12 syslog(priority, "%s", buf); 13 } 14 15 #endif /* !HAVE_VSYSLOG */ 16