diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-08 19:50:46 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-08 19:50:46 -0400 |
commit | 72592080496f9bde3a93cebf3eb93406f1877ff5 (patch) | |
tree | 34854c30eee3a6b59b0dce83e145f0f789696e1c /src | |
parent | d36538554435708b38af9ad7e8358490898cd888 (diff) |
libc: stdint: Add missing _HAVE_UINT64_T
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/include/stdint.h | 1 |
1 files changed, 1 insertions, 0 deletions
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__ */ |