From c67a7cec5b59b346a3fa9c53de821cb993aea7a2 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 2 Aug 2023 22:10:12 +0300 Subject: [PATCH] LibC: fix typo --- libc/include/stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/stdint.h b/libc/include/stdint.h index 85b5390ca8..b919f95335 100644 --- a/libc/include/stdint.h +++ b/libc/include/stdint.h @@ -91,7 +91,7 @@ typedef uint64_t uintmax_t; #define INTPTR_MIN (-INTPTR_MAX - 1) #define INTPTR_MAX __INTPTR_MAX__ -#define UINPTR_MAX __UINTPTR_MAX__ +#define UINTPTR_MAX __UINTPTR_MAX__ // FIXME: is this the correct? #define INTMAX_MIN INT64_MIN