From dfedf3f2bb434065da3ddbc931e87a4017535f80 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 30 Apr 2025 20:42:31 -0400 Subject: Update compiler to use randomly generated unique-per-file symbol suffixes instead of needing to rename symbols with objcopy --- src/stdlib/nums.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stdlib/nums.c') diff --git a/src/stdlib/nums.c b/src/stdlib/nums.c index 3213fd2f..34fbb162 100644 --- a/src/stdlib/nums.c +++ b/src/stdlib/nums.c @@ -105,7 +105,7 @@ public OptionalNum_t Num$parse(Text_t text) { if (end > str && end[0] == '\0') return d; else - return nan("null"); + return nan("none"); } static bool Num$is_none(const void *n, const TypeInfo_t *info) @@ -210,7 +210,7 @@ public OptionalNum32_t Num32$parse(Text_t text) { if (end > str && end[0] == '\0') return d; else - return nan("null"); + return nan("none"); } static bool Num32$is_none(const void *n, const TypeInfo_t *info) -- cgit v1.2.3