From c2aa5e9486b88f24703b833a55c85e525acb50df Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 9 Nov 2025 13:53:57 -0500 Subject: Cut out a level of pointer indirection for integers by using underlying struct --- src/stdlib/datatypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/datatypes.h') diff --git a/src/stdlib/datatypes.h b/src/stdlib/datatypes.h index 60b5dd55..caabdacd 100644 --- a/src/stdlib/datatypes.h +++ b/src/stdlib/datatypes.h @@ -30,7 +30,7 @@ typedef union { int64_t small; - mpz_t *big; + __mpz_struct *big; } Int_t; #define OptionalInt_t Int_t -- cgit v1.2.3