ref: c9b19f29afc4780a22db73dc53c1b1fa63caef66
parent: c0021447e97c23fc7f846ad9226f3d9f2b5068c8
author: Quentin Rameau <quinq@fifth.space>
date: Thu Mar 2 05:34:46 EST 2017
[libc] Fix stdint.h
--- a/libc/include/bits/amd64-sysv/arch/stdint.h
+++ b/libc/include/bits/amd64-sysv/arch/stdint.h
@@ -25,10 +25,10 @@
typedef int int32_fast_t;
typedef long int64_fast_t;
-typedef unsigned int8_fast_t;
-typedef unsigned int16_fast_t;
-typedef unsigned int32_fast_t;
-typedef unsigned long int64_fast_t;
+typedef unsigned uint8_fast_t;
+typedef unsigned uint16_fast_t;
+typedef unsigned uint32_fast_t;
+typedef unsigned long uint64_fast_t;
typedef long intptr_t;
typedef unsigned long uintptr_t;
--- a/libc/include/bits/i386-sysv/arch/stdint.h
+++ b/libc/include/bits/i386-sysv/arch/stdint.h
@@ -25,10 +25,10 @@
typedef int int32_fast_t;
typedef long long int64_fast_t;
-typedef unsigned int8_fast_t;
-typedef unsigned int16_fast_t;
-typedef unsigned int32_fast_t;
-typedef unsigned long long int64_fast_t;
+typedef unsigned uint8_fast_t;
+typedef unsigned uint16_fast_t;
+typedef unsigned uint32_fast_t;
+typedef unsigned long long uint64_fast_t;
typedef intptr_t long;
typedef long long uintptr_t unsigned;
--- a/libc/include/bits/qbe/arch/stdint.h
+++ b/libc/include/bits/qbe/arch/stdint.h
@@ -25,10 +25,10 @@
typedef int int32_fast_t;
typedef long int64_fast_t;
-typedef unsigned int8_fast_t;
-typedef unsigned int16_fast_t;
-typedef unsigned int32_fast_t;
-typedef unsigned long int64_fast_t;
+typedef unsigned uint8_fast_t;
+typedef unsigned uint16_fast_t;
+typedef unsigned uint32_fast_t;
+typedef unsigned long uint64_fast_t;
typedef long intptr_t;
typedef unsigned long uintptr_t;