summaryrefslogtreecommitdiff
path: root/src/xfpm-debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xfpm-debug.h')
-rw-r--r--src/xfpm-debug.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/xfpm-debug.h b/src/xfpm-debug.h
new file mode 100644
index 00000000..43dbf638
--- /dev/null
+++ b/src/xfpm-debug.h
@@ -0,0 +1,37 @@
+#ifndef __XFPM_DEBUG_H
+#define __XFPM_DEBUG_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdio.h>
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
+
+#ifdef HAVE_ERRNO_H
+#include <errno.h>
+#endif
+
+#include <glib.h>
+
+#ifdef DEBUG
+
+#define XFPM_DEBUG(...) G_STMT_START{ \
+ fprintf(stderr, "TRACE[%s:%d] %s(): ",__FILE__,__LINE__,__func__); \
+ fprintf(stderr, __VA_ARGS__); \
+}G_STMT_END
+
+#else
+
+#define XFPM_DEBUG(...)
+
+#endif
+
+#endif /*__XFPM_DEBUG_H */