summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2016-06-26 16:29:32 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2016-06-29 18:22:24 -0400
commitabe4a8942044a29acd68dc7faf4ac09563e9b921 (patch)
tree666cb878ff588cfbc0e847418985ac919fb0f09e /src/common.h
downloadudpastcp-abe4a8942044a29acd68dc7faf4ac09563e9b921.tar.xz
udpastcp-abe4a8942044a29acd68dc7faf4ac09563e9b921.zip
Initial commit
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
new file mode 100644
index 0000000..f78b2ba
--- /dev/null
+++ b/src/common.h
@@ -0,0 +1,5 @@
+#ifdef DEBUG
+#define DBG(...) do { fprintf(stderr, __VA_ARGS__); putc('\n', stderr); } while (0)
+#else
+#define DBG(...)
+#endif