diff options
Diffstat (limited to 'src/lib/decoder/system.h')
-rw-r--r-- | src/lib/decoder/system.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/decoder/system.h b/src/lib/decoder/system.h new file mode 100644 index 0000000..414730a --- /dev/null +++ b/src/lib/decoder/system.h @@ -0,0 +1,11 @@ + +#ifndef __GSMTVOID_SYSTEM_H__ +#define __GSMTVOID_SYSTEM_H__ 1 + +#define DEBUGF(a...) { \ + fprintf(stderr, "%s:%d ", __FILE__, __LINE__); \ + fprintf(stderr, a); \ +} while (0) + +#endif + |