scc

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

commit 9f1bdd10088af510c839b7e337d4366df693fe66
parent 46372e9a0d5cbac26feb3890f0539c6d7d327f71
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 24 Jan 2017 17:18:29 +0100

[libc] Fix intptr_t in z80

Diffstat:
Mlibc/include/z80/stdint.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/include/z80/stdint.h b/libc/include/z80/stdint.h @@ -32,7 +32,7 @@ typedef unsigned uint16_fast_t; typedef unsigned long uint32_fast_t; typedef unsigned long long uint64_fast_t; -typedef long intptr_t; +typedef int intptr_t; typedef unsigned uintptr_t; typedef long long intmax_t;