summaryrefslogtreecommitdiff
path: root/gsm-tvoid/src/lib/system.h
diff options
context:
space:
mode:
authorleo <leo@brix.(none)>2008-02-20 02:28:51 +0000
committerleo <leo@brix.(none)>2008-02-20 02:28:51 +0000
commit7a743398cf4738e58a7a57f94dc079a6c529829d (patch)
tree256bd3fd1fc5dd6ee35a5d3e507610e2eb800932 /gsm-tvoid/src/lib/system.h
parentd6760ac7b1e7ae5afd66be1b9b2af31eeb7554e7 (diff)
channel decoding (gsmstack)
Diffstat (limited to 'gsm-tvoid/src/lib/system.h')
-rw-r--r--gsm-tvoid/src/lib/system.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/gsm-tvoid/src/lib/system.h b/gsm-tvoid/src/lib/system.h
new file mode 100644
index 0000000..414730a
--- /dev/null
+++ b/gsm-tvoid/src/lib/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
+
personal git repositories of Harald Welte. Your mileage may vary