nokken/native/statistics/arm64_fixes.h
2025-04-20 11:17:03 -04:00

9 lines
No EOL
219 B
C

#pragma once
#ifdef __aarch64__
// Fix uintptr_t definition for ARM64
#include <stdint.h>
// We need to undefine and redefine uintptr_t to ensure it's 64-bit on ARM64
#undef uintptr_t
typedef uint64_t uintptr_t;
#endif