summaryrefslogtreecommitdiff
path: root/XSUB.h
diff options
context:
space:
mode:
Diffstat (limited to 'XSUB.h')
-rw-r--r--XSUB.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/XSUB.h b/XSUB.h
index 611eac6911..75e65cf1db 100644
--- a/XSUB.h
+++ b/XSUB.h
@@ -7,7 +7,8 @@
#endif
#if defined(WIN32) && defined(__GNUC__)
-#define FORCE_ARG_STRING(x) #x
+#define STRINGIFY_THINGY(x) #x
+#define FORCE_ARG_STRING(x) STRINGIFY_THINGY(x)
#else
#define FORCE_ARG_STRING(x) x
#endif