libc/openbsd: fix int_fast64_t definition - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 473b289e3176157e7674cf676ec1ef56a8c04e02
(DIR) parent 1127a487c737f972f98aeb54bd29e599e5c6af85
(HTM) Author: Lucas Gabriel Vuotto <lucas@lgv5.net>
Date: Mon, 7 Apr 2025 15:17:39 +0200
libc/openbsd: fix int_fast64_t definition
Diffstat:
M include/bits/openbsd/amd64/arch/st… | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/include/bits/openbsd/amd64/arch/stdint.h b/include/bits/openbsd/amd64/arch/stdint.h
@@ -98,7 +98,7 @@ typedef unsigned long uint_least64_t;
typedef int int_fast8_t;
typedef int int_fast16_t;
typedef int int_fast32_t;
-typedef int int_fast64_t;
+typedef long int_fast64_t;
typedef unsigned uint_fast8_t;
typedef unsigned uint_fast16_t;