From 9738b3454639ddf3ae46186a5c6ba671fe9a6861 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 5 Oct 2025 16:24:59 -0400 Subject: Add serialization and deserialization by coercion to/from [Byte] --- src/stdlib/integers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib') diff --git a/src/stdlib/integers.c b/src/stdlib/integers.c index e7a58ef3..962c97cf 100644 --- a/src/stdlib/integers.c +++ b/src/stdlib/integers.c @@ -27,7 +27,7 @@ int Int$print(FILE *f, Int_t i) { } } -static inline Text_t _int64_to_text(int64_t n) { +static Text_t _int64_to_text(int64_t n) { if (n == INT64_MIN) return Text("-9223372036854775808"); char buf[21] = {[20] = 0}; // Big enough for INT64_MIN + '\0' -- cgit v1.2.3