libc/arm64: Remove invalid int type - 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 0b5f87dcd9ac36f700c7718168e6378e90cb95fe
 (DIR) parent 41f4e8a8414c3db705b3c730f933e8a980110f91
 (HTM) Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
       Date:   Tue, 12 Mar 2024 18:45:08 +0100
       
       libc/arm64: Remove invalid int type
       
       The definition of uint_fast8_t had an invalid "int"
       that didn't make sense at all there.
       
       Diffstat:
         M include/bits/linux/arm64/arch/stdiā€¦ |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/include/bits/linux/arm64/arch/stdint.h b/include/bits/linux/arm64/arch/stdint.h
       @@ -100,7 +100,7 @@ typedef int int_fast16_t;
        typedef int int_fast32_t;
        typedef long long int_fast64_t;
        
       -typedef unsigned char int uint_fast8_t;
       +typedef unsigned char uint_fast8_t;
        typedef unsigned int uint_fast16_t;
        typedef unsigned int uint_fast32_t;
        typedef unsigned long long uint_fast64_t;