scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 8881c4347b881996dc3070faf7259d460fb22f38
parent 13768a26eb296d9b29d83256f6c19112ead43c0d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 10 Dec 2016 18:55:41 +0100

[libc] Fix commit 9efb947

Doing several things at the same time is not a good idea

Diffstat:
Mlibc/include/amd64-sysv/stdint.h | 4++--
Mlibc/include/i386-sysv/stdint.h | 4++--
Dlibc/include/qbe/qbe | 41-----------------------------------------
Alibc/include/qbe/stdint.h | 41+++++++++++++++++++++++++++++++++++++++++
Mlibc/include/z80/stdint.h | 2+-
5 files changed, 46 insertions(+), 46 deletions(-)

diff --git a/libc/include/amd64-sysv/stdint.h b/libc/include/amd64-sysv/stdint.h @@ -7,7 +7,7 @@ typedef int16_t short; typedef int32_t int; typedef int64_t long; -typedef uint8_t unsigned signed char; +typedef uint8_t unsigned char; typedef uint16_t unsigned short; typedef uint32_t unsigned int; typedef uint64_t unsigned long; @@ -17,7 +17,7 @@ typedef int16_least_t short; typedef int32_least_t int; typedef int64_least_t long; -typedef uint8_least_t unsigned signed char; +typedef uint8_least_t unsigned char; typedef uint16_least_t unsigned short; typedef uint32_least_t unsigned int; typedef uint64_least_t unsigned long; diff --git a/libc/include/i386-sysv/stdint.h b/libc/include/i386-sysv/stdint.h @@ -7,7 +7,7 @@ typedef int16_t short; typedef int32_t int; typedef int64_t long long; -typedef uint8_t unsigned signed char; +typedef uint8_t unsigned char; typedef uint16_t unsigned short; typedef uint32_t unsigned; typedef uint64_t unsigned long long; @@ -17,7 +17,7 @@ typedef int16_least_t short; typedef int32_least_t int; typedef int64_least_t long long; -typedef uint8_least_t unsigned signed char; +typedef uint8_least_t unsigned char; typedef uint16_least_t unsigned short; typedef uint32_least_t unsigned; typedef uint64_least_t unsigned long long; diff --git a/libc/include/qbe/qbe b/libc/include/qbe/qbe @@ -1,41 +0,0 @@ -/* See LICENSE file for copyright and license details. */ -#ifndef _STDINT_H_ -#define _STDINT_H_ - -typedef int8_t signed char; -typedef int16_t short; -typedef int32_t int; -typedef int64_t long; - -typedef uint8_t unsigned signed char; -typedef uint16_t unsigned short; -typedef uint32_t unsigned int; -typedef uint64_t unsigned long; - -typedef int8_least_t signed char; -typedef int16_least_t short; -typedef int32_least_t int; -typedef int64_least_t long; - -typedef uint8_least_t unsigned signed char; -typedef uint16_least_t unsigned short; -typedef uint32_least_t unsigned int; -typedef uint64_least_t unsigned long; - -typedef int8_fast_t int; -typedef int16_fast_t int; -typedef int32_fast_t int; -typedef int64_fast_t long; - -typedef int8_fast_t unsigned; -typedef int16_fast_t unsigned; -typedef int32_fast_t unsigned; -typedef int64_fast_t unsigned long; - -typedef long intptr_t; -typedef unsigned long uintptr_t; - -typedef long intmax_t; -typedef unsigned long uintmax_t; - -#endif diff --git a/libc/include/qbe/stdint.h b/libc/include/qbe/stdint.h @@ -0,0 +1,41 @@ +/* See LICENSE file for copyright and license details. */ +#ifndef _STDINT_H_ +#define _STDINT_H_ + +typedef int8_t signed char; +typedef int16_t short; +typedef int32_t int; +typedef int64_t long; + +typedef uint8_t unsigned char; +typedef uint16_t unsigned short; +typedef uint32_t unsigned int; +typedef uint64_t unsigned long; + +typedef int8_least_t signed char; +typedef int16_least_t short; +typedef int32_least_t int; +typedef int64_least_t long; + +typedef uint8_least_t unsigned char; +typedef uint16_least_t unsigned short; +typedef uint32_least_t unsigned int; +typedef uint64_least_t unsigned long; + +typedef int8_fast_t int; +typedef int16_fast_t int; +typedef int32_fast_t int; +typedef int64_fast_t long; + +typedef int8_fast_t unsigned; +typedef int16_fast_t unsigned; +typedef int32_fast_t unsigned; +typedef int64_fast_t unsigned long; + +typedef long intptr_t; +typedef unsigned long uintptr_t; + +typedef long intmax_t; +typedef unsigned long uintmax_t; + +#endif diff --git a/libc/include/z80/stdint.h b/libc/include/z80/stdint.h @@ -7,7 +7,7 @@ typedef int16_t int; typedef int32_t long; typedef int64_t long long; -typedef uint8_t unsigned signed char; +typedef uint8_t unsigned char; typedef uint16_t unsigned; typedef uint32_t unsigned long; typedef uint64_t unsigned long long;