Home
       libc/arm64: Remove invalid int type - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit fac3afee5f050f7ac9294584a98e8614cd0be2ff
   DIR parent 1156602edeb3876e50b1b8a3f038f0b4cae41e27
  HTML 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;