scc

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

commit 2541dce5d67d302749487259f2feb36fd0f27f40
parent 1685a71d45fc658f1a9793d78440ac85b79d60d0
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 24 Jan 2017 16:49:38 +0100

[libc] Fix sizes in z80/stdint.h

Diffstat:
Mlibc/include/z80/stdint.h | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/libc/include/z80/stdint.h b/libc/include/z80/stdint.h @@ -27,15 +27,15 @@ typedef int int16_fast_t; typedef long int32_fast_t; typedef long long int64_fast_t; -typedef unsigned char int8_fast_t; -typedef unsigned int16_fast_t; -typedef unsigned long int32_fast_t; -typedef unsigned long long int64_fast_t; +typedef unsigned char uint8_fast_t; +typedef unsigned uint16_fast_t; +typedef unsigned long uint32_fast_t; +typedef unsigned long long uint64_fast_t; -typedef intptr_t long; -typedef uintptr_t unsigned; +typedef long intptr_t; +typedef unsigned uintptr_t; -typedef intmax_t long; -typedef long long uintmax_t unsigned; +typedef long long intmax_t; +typedef unsigned long long uintmax_t; #endif