From 72592080496f9bde3a93cebf3eb93406f1877ff5 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 8 Oct 2025 19:50:46 -0400 Subject: libc: stdint: Add missing _HAVE_UINT64_T Signed-off-by: Ian Moffett --- src/lib/libc/include/stdint.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/libc/include/stdint.h b/src/lib/libc/include/stdint.h index 8190390..24898c0 100644 --- a/src/lib/libc/include/stdint.h +++ b/src/lib/libc/include/stdint.h @@ -49,6 +49,7 @@ typedef __uint32_t uint32_t; #if __SIZEOF_SIZE_T__ == 8 #ifndef _HAVE_UINT64_T +#define _HAVE_UINT64_T typedef __uint64_t uint64_t; #endif /* _HAVE_UINT64_T */ #endif /* __SIZEOF_SIZE_T__ */ -- cgit v1.2.3