aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/datatypes.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-11-09 13:53:57 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-11-09 13:53:57 -0500
commitc2aa5e9486b88f24703b833a55c85e525acb50df (patch)
treee96a36d12d8c09f1635a0bb04929113174810504 /src/stdlib/datatypes.h
parent75bb38a10c9fa069cfbc731a1f50e4f977447987 (diff)
Cut out a level of pointer indirection for integers by using underlying
struct
Diffstat (limited to 'src/stdlib/datatypes.h')
-rw-r--r--src/stdlib/datatypes.h2
1 files changed, 1 insertions, 1 deletions
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