From fc09422e3b9bea90be456f7a706b1ce5cdc2ce3c Mon Sep 17 00:00:00 2001 From: Trim21 Date: Sun, 4 Jan 2026 16:07:47 +0800 Subject: [PATCH] fix missing UINT8_MAX --- crates/language/wasm/include/stdint.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/language/wasm/include/stdint.h b/crates/language/wasm/include/stdint.h index 5f7cb264..8b4073eb 100644 --- a/crates/language/wasm/include/stdint.h +++ b/crates/language/wasm/include/stdint.h @@ -23,6 +23,8 @@ typedef long unsigned int size_t; typedef long unsigned int uintptr_t; +#define UINT8_MAX 255 + #define UINT16_MAX 65535 #define UINT32_MAX 4294967295U