aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc/debug.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2008-12-23 20:25:15 +0000
committerHarald Welte <laforge@gnumonks.org>2008-12-23 20:25:15 +0000
commit52b1f9888905df8aa6ecd50af900b63f5273de6a (patch)
treee8d54defa2caba361a847b535f45708cadc0f0e2 /include/openbsc/debug.h
initial commit of current OpenBSC state
Diffstat (limited to 'include/openbsc/debug.h')
-rw-r--r--include/openbsc/debug.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/openbsc/debug.h b/include/openbsc/debug.h
new file mode 100644
index 000000000..c1db120a9
--- /dev/null
+++ b/include/openbsc/debug.h
@@ -0,0 +1,15 @@
+#ifndef _DEBUG_H
+#define _DEBUG_H
+
+#define DRLL 0x0001
+#define DCC 0x0002
+#define DMM 0x0004
+#define DRR 0x0008
+
+#ifdef DEBUG
+#define DEBUGP(ss, args, ...) debugp(ss, args, ...)
+#else
+#define DEBUGP(xss, args, ...)
+#endif
+
+#endif /* _DEBUG_H */