diff options
author | Jochen Dolze <vdr@dolze.de> | 2010-03-26 23:16:36 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2010-03-26 23:16:36 +0100 |
commit | 5ffec495064060e5e21a255c5358d2f2cabc8056 (patch) | |
tree | a6b1b4d10206d70210bf2cfab2b5e3776f5d9a54 | |
parent | 9d00888b7602718f6b6954a51a8bfd468b5573fb (diff) | |
download | vdr-plugin-markad-5ffec495064060e5e21a255c5358d2f2cabc8056.tar.gz vdr-plugin-markad-5ffec495064060e5e21a255c5358d2f2cabc8056.tar.bz2 |
Added missing debug.h
-rw-r--r-- | debug.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +/* + * debug.h: A program for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + */ + +#ifndef __debug_h_ +#define __debug_h_ + +#ifndef LOG_ERR +#define LOG_ERR 3 +#endif + +#define tsyslog(fmt,...) void( (SysLogLevel > 3) ? syslog_with_tid(LOG_ERR, fmt, __VA_ARGS__) : void() ) + +#endif
\ No newline at end of file |