Initial commit - gsm-receiver with removed quick hacks
diff --git a/lib/system.h b/lib/system.h
new file mode 100644
index 0000000..407751e
--- /dev/null
+++ b/lib/system.h
@@ -0,0 +1,10 @@
+#ifndef __GSMTVOID_SYSTEM_H__
+#define __GSMTVOID_SYSTEM_H__ 1
+
+#define DEBUGF(a...)	{ \
+	fprintf(stderr, "%s:%d ", __FILE__, __LINE__); \
+	fprintf(stderr, a); \
+} while (0)
+
+#endif
+