From dc93c314e6feaa68b4ce6cc6bd26180f945bc52f Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Thu, 11 Dec 2025 20:36:49 +0000 Subject: [PATCH] Add uintptr_t --- common/uvm32_target.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/uvm32_target.h b/common/uvm32_target.h index 207b45a..a5393df 100644 --- a/common/uvm32_target.h +++ b/common/uvm32_target.h @@ -14,6 +14,8 @@ typedef uint32_t size_t; typedef int32_t ssize_t; +typedef uint32_t uintptr_t; + #define NULL 0 void *memcpy(void *dst, const void *src, int len);