types.h: rename STRINGIFY() macro to WC_STRINGIFY().

pull/4359/head
Daniel Pouzzner 2021-09-29 16:28:52 -05:00
parent e3989edd39
commit 40c32081bb
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ decouple library dependencies with standard string, memory and so on.
/* helpers for stringifying the expanded value of a macro argument rather
* than its literal text:
*/
#define STRINGIFY_L2(str) #str
#define STRINGIFY(str) STRINGIFY_L2(str)
#define _WC_STRINGIFY_L2(str) #str
#define WC_STRINGIFY(str) _WC_STRINGIFY_L2(str)
/* try to set SIZEOF_LONG or SIZEOF_LONG_LONG if user didn't */
#if defined(_MSC_VER) || defined(HAVE_LIMITS_H)