From ad3c72249988335cbf6bde5d20d862150685b17d Mon Sep 17 00:00:00 2001
From: Armando Luiz Nicolini Delgado <nicolui@inf.ufpr.br>
Date: Wed, 13 Nov 2024 09:40:39 -0300
Subject: [PATCH] /* Incluido novo typedef lint_t em utils.h */

---
 utils/utils.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/utils/utils.h b/utils/utils.h
index e964a70..8899489 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -17,6 +17,9 @@ typedef char * string_t;
 // rtime_t: tipo usado para representar valores de tempo em ponto flutuante
 typedef double rtime_t;
 
+// lint_t: tipo usado para representar valores long int
+typedef long int lint_t;
+
 // SIMD alignment macros (bytes)
 #define ALIGN_64 __attribute__((aligned(64)))
 #define ALIGN_32 __attribute__((aligned(32)))
-- 
GitLab