scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 473b289e3176157e7674cf676ec1ef56a8c04e02
parent 1127a487c737f972f98aeb54bd29e599e5c6af85
Author: Lucas Gabriel Vuotto <lucas@lgv5.net>
Date:   Mon,  7 Apr 2025 15:17:39 +0200

libc/openbsd: fix int_fast64_t definition

Diffstat:
Minclude/bits/openbsd/amd64/arch/stdint.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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;