summaryrefslogtreecommitdiff
path: root/src/base/msg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/msg.h')
-rw-r--r--src/base/msg.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/base/msg.h b/src/base/msg.h
index a2f77e9..e9bdb3b 100644
--- a/src/base/msg.h
+++ b/src/base/msg.h
@@ -2,12 +2,6 @@
#define MSG_H
#ifdef DEBUG
-#define DEBUG_MSG(msg,arg...) printf(msg, ##arg)
-#else /* DEBUG */
-#define DEBUG_MSG(msg,arg...)
-#endif /* DEBUG * */
-
-#ifdef DEBUG
#define debug(msg,arg...) fprintf(stdout, "%s ", _("[Debug]")); fprintf(stdout, _(msg), ##arg); fprintf(stdout, "\n")
#else /* DEBUG */
#define debug(msg,arg...)