diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-10-05 16:24:59 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-10-05 16:24:59 -0400 |
| commit | 9738b3454639ddf3ae46186a5c6ba671fe9a6861 (patch) | |
| tree | 3b9d300b4d2cae1479c013bdb154b1eb7e16780f /src/stdlib | |
| parent | 76d3008d98cf9cd6ed60a9aa66a87f854965f0ab (diff) | |
Add serialization and deserialization by coercion to/from [Byte]
Diffstat (limited to 'src/stdlib')
| -rw-r--r-- | src/stdlib/integers.c | 2 |
1 files changed, 1 insertions, 1 deletions
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' |
