From b147a37c2351356e142d4a779af936a64abe6c50 Mon Sep 17 00:00:00 2001 From: Christian Jullien Date: Sat, 2 Jan 2021 11:23:26 +0100 Subject: [PATCH] Remove useless [u]intN_t definitions from stddef.h --- include/stddef.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/include/stddef.h b/include/stddef.h index 4283b238..ea024f30 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -12,23 +12,6 @@ typedef __SIZE_TYPE__ uintptr_t; typedef union { long long __ll; long double __ld; } max_align_t; #endif -#ifndef __int8_t_defined -#define __int8_t_defined -typedef signed char int8_t; -typedef signed short int int16_t; -typedef signed int int32_t; -typedef unsigned char uint8_t; -typedef unsigned short int uint16_t; -typedef unsigned int uint32_t; -#if defined(_WIN32) \ - || (defined(__LP64__) \ - && !defined(__FreeBSD__) \ - && !(defined(__NetBSD__) && defined(__aarch64__))) -typedef signed __INT64_TYPE__ int64_t; -typedef unsigned __INT64_TYPE__ uint64_t; -#endif -#endif - #ifndef NULL #define NULL ((void*)0) #endif