shithub: scc

Download patch

ref: a43b681fd4f60b2e03793ce9b39bc271ab6176e9
parent: acdc9fd4e91cc45e69bd07c9488bb4b22866129d
author: Roberto E. Vargas Caballero <[email protected]>
date: Tue Jan 24 11:49:38 EST 2017

[libc] Fix sizes in z80/stdint.h

--- a/libc/include/z80/stdint.h
+++ b/libc/include/z80/stdint.h
@@ -27,15 +27,15 @@
 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