File: syslog.c

package info (click to toggle)
sane-backends 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,552 kB
  • sloc: ansic: 418,643; cpp: 33,564; makefile: 2,502; java: 1,412; sh: 663; python: 330; awk: 83; perl: 27
file content (13 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (8)
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