summaryrefslogtreecommitdiff
path: root/include/asterisk.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk.h')
-rw-r--r--include/asterisk.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index 1e9f076eb..24e4c0512 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -224,4 +224,8 @@ struct ast_sched_context;
#define bzero 0x__dont_use_bzero__use_memset_instead""
#define bcopy 0x__dont_use_bcopy__use_memmove_instead()
+/* Some handy macros for turning a preprocessor token into (effectively) a quoted string */
+#define __stringify_1(x) #x
+#define __stringify(x) __stringify_1(x)
+
#endif /* _ASTERISK_H */