cgen: remove unused macro V64_PRINTFORMAT

This commit is contained in:
Delyan Angelov 2025-03-29 08:43:00 +02:00
parent 657770e6c1
commit 6b3521f5f3
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -371,18 +371,6 @@ const c_common_macros = '
#define OPTION_CAST(x) (x)
#ifndef V64_PRINTFORMAT
#ifdef PRIx64
#define V64_PRINTFORMAT "0x%"PRIx64
#elif defined(__WIN32__)
#define V64_PRINTFORMAT "0x%I64x"
#elif defined(__linux__) && defined(__LP64__)
#define V64_PRINTFORMAT "0x%lx"
#else
#define V64_PRINTFORMAT "0x%llx"
#endif
#endif
#if defined(_WIN32) || defined(__CYGWIN__)
#define VV_EXPORTED_SYMBOL extern __declspec(dllexport)
#define VV_LOCAL_SYMBOL static