From 40c32081bb12b7a9b4e309bdf18f19c893c516e6 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Wed, 29 Sep 2021 16:28:52 -0500 Subject: [PATCH] types.h: rename STRINGIFY() macro to WC_STRINGIFY(). --- wolfssl/wolfcrypt/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfssl/wolfcrypt/types.h b/wolfssl/wolfcrypt/types.h index e87b80542..b0fb09772 100644 --- a/wolfssl/wolfcrypt/types.h +++ b/wolfssl/wolfcrypt/types.h @@ -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)