From b3fbea62da5dfbec612af3e945e6b9a9bea5ba11 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 11 Apr 2025 15:47:57 -0600 Subject: [PATCH] Define __uint32_t and __uint64_t for openlibm --- include/stdint.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/stdint.h b/include/stdint.h index 3a578783fa..022fc90d28 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -50,9 +50,13 @@ typedef __UINT16_TYPE__ uint16_t; #endif #ifdef __UINT32_TYPE__ typedef __UINT32_TYPE__ uint32_t; +// Required by openlibm +typedef __UINT32_TYPE__ __uint32_t; #endif #ifdef __UINT64_TYPE__ typedef __UINT64_TYPE__ uint64_t; +// Required by openlibm +typedef __UINT64_TYPE__ __uint64_t; #endif /* 7.8.1.2 Minimum-width integer types */