From ffb69489061cbf3d87f8d09c1668d031cc37af56 Mon Sep 17 00:00:00 2001 From: Armando Luiz Nicolini Delgado <nicolui@inf.ufpr.br> Date: Wed, 13 Nov 2024 10:02:09 -0300 Subject: [PATCH] /* typedef 'lint_t' devia ser 'long long int' */ --- utils/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.h b/utils/utils.h index 8899489..fbc3957 100644 --- a/utils/utils.h +++ b/utils/utils.h @@ -18,7 +18,7 @@ typedef char * string_t; typedef double rtime_t; // lint_t: tipo usado para representar valores long int -typedef long int lint_t; +typedef long long int lint_t; // SIMD alignment macros (bytes) #define ALIGN_64 __attribute__((aligned(64))) -- GitLab