wolfssl/wolfcrypt/types.h: add missing static attribute to WC_WUR_INT().

This commit is contained in:
Daniel Pouzzner
2025-10-14 19:10:15 -05:00
parent 1602ed2f3a
commit 21a66ec36b

View File

@@ -465,7 +465,7 @@ enum {
#ifdef NO_INLINE
#define WC_WUR_INT(x) (x)
#else
WC_INLINE WARN_UNUSED_RESULT int WC_WUR_INT(int x) { return x; }
static WC_INLINE WARN_UNUSED_RESULT int WC_WUR_INT(int x) { return x; }
#endif
#ifdef WORD64_AVAILABLE