From 68785af4da7727238c86dcf8858e0b5975bc988e Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Thu, 22 Oct 2009 07:39:23 -0700 Subject: [PATCH] Add stringify macros in src/helper/types.h. --- src/helper/types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/helper/types.h b/src/helper/types.h index eb836c2458..50f5fe2d4c 100644 --- a/src/helper/types.h +++ b/src/helper/types.h @@ -56,6 +56,10 @@ typedef bool _Bool; #endif /* HAVE_STDBOOL_H */ +/// turns a macro argument into a string constant +#define stringify(s) __stringify(s) +#define __stringify(s) #s + /* DANGER!!!! here be dragons! * * Leave these fn's as byte accesses because it is safe -- 2.30.2