[hackers] [scc] [libc] Fix sizes in z80/stdint.h || Roberto E. Vargas Caballero

From: <git_AT_suckless.org>
Date: Tue, 24 Jan 2017 16:49:56 +0100 (CET)

commit 2541dce5d67d302749487259f2feb36fd0f27f40
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Tue Jan 24 16:49:38 2017 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Tue Jan 24 16:49:38 2017 +0100

    [libc] Fix sizes in z80/stdint.h

diff --git a/libc/include/z80/stdint.h b/libc/include/z80/stdint.h
index b6521b1..5a9f266 100644
--- a/libc/include/z80/stdint.h
+++ b/libc/include/z80/stdint.h
_AT_@ -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
Received on Tue Jan 24 2017 - 16:49:56 CET

This archive was generated by hypermail 2.3.0 : Tue Jan 24 2017 - 17:00:18 CET