Add SIZEOF_VOID_P (GH PR #32)

This commit is contained in:
Emil Rosenquist 2022-09-01 10:17:46 +02:00 committed by Boris Kolpackov
parent a31b66b8b7
commit c4ec18c503

View File

@ -0,0 +1,9 @@
// SIZEOF_VOID_P
#undef SIZEOF_VOID_P
#if defined(_WIN64) || defined(__x86_64__) || defined(__ppc64__)
# define SIZEOF_VOID_P 8
#else
# define SIZEOF_VOID_P 4
#endif