commit 9f1bdd10088af510c839b7e337d4366df693fe66 Author: Roberto E. Vargas Caballero <k...@shike2.com> AuthorDate: Tue Jan 24 17:18:29 2017 +0100 Commit: Roberto E. Vargas Caballero <k...@shike2.com> CommitDate: Tue Jan 24 17:18:29 2017 +0100
[libc] Fix intptr_t in z80 diff --git a/libc/include/z80/stdint.h b/libc/include/z80/stdint.h index 5a9f266..1abfffb 100644 --- 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;