From b3c6fb80b344b3bfe7cd6c852f306cdc1037d90d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 13 Feb 2024 14:43:39 -0500 Subject: Add 'Int' -> 'Int64' and 'Num' -> 'Num64' aliases --- nextlang.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nextlang.h b/nextlang.h index 83dc7996..3f17e281 100644 --- a/nextlang.h +++ b/nextlang.h @@ -17,9 +17,11 @@ #define Int32_t int32_t #define Int16_t int16_t #define Int8_t int8_t +#define Int_t int64_t #define Num64_t double #define Num32_t float +#define Num_t double #define String_t CORD -- cgit v1.2.3