scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit be3ad922e530e074258cb5da7a3259efd6c04b96
parent 45f79f6bb8623c3b169480c54c860fb0eb4487da
Author: Quentin Rameau <quinq@fifth.space>
Date:   Thu,  2 Mar 2017 10:34:46 +0100

[libc] Fix stdint.h

Diffstat:
Mlibc/include/bits/amd64-sysv/arch/stdint.h | 8++++----
Mlibc/include/bits/i386-sysv/arch/stdint.h | 8++++----
Mlibc/include/bits/qbe/arch/stdint.h | 8++++----
3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/libc/include/bits/amd64-sysv/arch/stdint.h b/libc/include/bits/amd64-sysv/arch/stdint.h @@ -25,10 +25,10 @@ typedef int int16_fast_t; typedef int int32_fast_t; typedef long int64_fast_t; -typedef unsigned int8_fast_t; -typedef unsigned int16_fast_t; -typedef unsigned int32_fast_t; -typedef unsigned long int64_fast_t; +typedef unsigned uint8_fast_t; +typedef unsigned uint16_fast_t; +typedef unsigned uint32_fast_t; +typedef unsigned long uint64_fast_t; typedef long intptr_t; typedef unsigned long uintptr_t; diff --git a/libc/include/bits/i386-sysv/arch/stdint.h b/libc/include/bits/i386-sysv/arch/stdint.h @@ -25,10 +25,10 @@ typedef int int16_fast_t; typedef int int32_fast_t; typedef long long int64_fast_t; -typedef unsigned int8_fast_t; -typedef unsigned int16_fast_t; -typedef unsigned int32_fast_t; -typedef unsigned long long int64_fast_t; +typedef unsigned uint8_fast_t; +typedef unsigned uint16_fast_t; +typedef unsigned uint32_fast_t; +typedef unsigned long long uint64_fast_t; typedef intptr_t long; typedef long long uintptr_t unsigned; diff --git a/libc/include/bits/qbe/arch/stdint.h b/libc/include/bits/qbe/arch/stdint.h @@ -25,10 +25,10 @@ typedef int int16_fast_t; typedef int int32_fast_t; typedef long int64_fast_t; -typedef unsigned int8_fast_t; -typedef unsigned int16_fast_t; -typedef unsigned int32_fast_t; -typedef unsigned long int64_fast_t; +typedef unsigned uint8_fast_t; +typedef unsigned uint16_fast_t; +typedef unsigned uint32_fast_t; +typedef unsigned long uint64_fast_t; typedef long intptr_t; typedef unsigned long uintptr_t;