diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-23 18:20:43 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-23 18:20:43 -0400 |
| commit | a4b8ef38b1d7a26b4e6bfa966f021a237bf16ce1 (patch) | |
| tree | a4137025b4096749341513f44c12d381ceb636bf /src/stdlib/nums.c | |
| parent | ecf08ab61fe49101b6c769badf362d21d8699df4 (diff) | |
Lots of cleanups
Diffstat (limited to 'src/stdlib/nums.c')
| -rw-r--r-- | src/stdlib/nums.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdlib/nums.c b/src/stdlib/nums.c index cbb0c9d7..83166659 100644 --- a/src/stdlib/nums.c +++ b/src/stdlib/nums.c @@ -113,7 +113,7 @@ public OptionalNum_t Num$parse(Text_t text, Text_t *remainder) { } } -static bool Num$is_none(const void *n, const TypeInfo_t *info) +public CONSTFUNC bool Num$is_none(const void *n, const TypeInfo_t *info) { (void)info; return isnan(*(Num_t*)n); @@ -223,7 +223,7 @@ public OptionalNum32_t Num32$parse(Text_t text, Text_t *remainder) { } } -static bool Num32$is_none(const void *n, const TypeInfo_t *info) +public CONSTFUNC bool Num32$is_none(const void *n, const TypeInfo_t *info) { (void)info; return isnan(*(Num32_t*)n); |
