From: Michael D. Lowis Date: Thu, 23 Feb 2017 20:47:37 +0000 (-0500) Subject: added type aliases for standard int types to remove the _t X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=a1e8621bdf7d0f9fc809ee4259c2b7df85edb590;p=projs%2Falib.git added type aliases for standard int types to remove the _t --- 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, ...) {