From 58ed87340168df1d2153b39aef966f1acf070f92 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Thu, 26 Jun 2025 12:04:40 +0200 Subject: [PATCH] New type in types.h: size_t (u64) --- types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/types.h b/types.h index f0780a4..cd25ff8 100644 --- a/types.h +++ b/types.h @@ -4,3 +4,4 @@ typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; typedef unsigned long u64; +typedef u64 size_t;