File: syslog_.h

package info (click to toggle)
httptunnel 3.3%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 524 kB
  • ctags: 309
  • sloc: ansic: 4,646; sh: 338; makefile: 97
file content (24 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
port/syslog_.h

Copyright (C) 1999 Lars Brinkhoff.  See COPYING for terms and conditions.
*/

#ifndef PORT_SYSLOG_H
#define PORT_SYSLOG_H

#include "config.h"

#include <stdarg.h>

#ifdef HAVE_SYSLOG_H
#include <syslog.h>
#else
void syslog (int level, char *fmt0, ...);
#endif

#ifndef HAVE_VSYSLOG
void vsyslog (int level, const char *fmt0, va_list ap);
#endif

#endif