first commit - migrated from codeberg

This commit is contained in:
Charlotte Croce 2025-04-20 11:17:03 -04:00
commit 5ead03e1f7
567 changed files with 102721 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#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