From a1e8621bdf7d0f9fc809ee4259c2b7df85edb590 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Thu, 23 Feb 2017 15:47:37 -0500 Subject: [PATCH] added type aliases for standard int types to remove the _t --- source/stdc.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/stdc.h b/source/stdc.h index c01b700..3124f0b 100644 --- a/source/stdc.h +++ b/source/stdc.h @@ -29,6 +29,19 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; +typedef uint8_t uint8; +typedef uint16_t uint16; +typedef uint32_t uint32; +typedef uint64_t uint64; + +typedef int8_t int8; +typedef int16_t int16; +typedef int32_t int32; +typedef int64_t int64; + +typedef uintptr_t uintptr; +typedef intptr_t intptr; + /* Generic Death Function *****************************************************************************/ static void die(const char* msgfmt, ...) { -- 2.52.0