diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-12-28 17:30:04 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-12-28 17:30:04 -0500 |
| commit | fedc4b0ead8f7874120c6e86aaa971a790faea1f (patch) | |
| tree | 2973f9691b72c97a9cc80fd75c4db8e2e2c59e63 /src/stdlib/bigint.c | |
| parent | 469030e9686e81c520c2ecbeab703a07361f51a4 (diff) | |
| parent | cfce376f585e0cd0231e95843617f75bd65b6c07 (diff) | |
Merge branch 'dev' into static-dependencies
Diffstat (limited to 'src/stdlib/bigint.c')
| -rw-r--r-- | src/stdlib/bigint.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stdlib/bigint.c b/src/stdlib/bigint.c index 4a5b2565..d47dfee8 100644 --- a/src/stdlib/bigint.c +++ b/src/stdlib/bigint.c @@ -431,7 +431,9 @@ PUREFUNC Closure_t Int$onward(Int_t first, Int_t step) { } public -Int_t Int$from_str(const char *str) { return Int$parse(Text$from_str(str), NONE_INT, NULL); } +Int_t Int$from_str(const char *str) { + return Int$parse(Text$from_str(str), NONE_INT, NULL); +} public OptionalInt_t Int$parse(Text_t text, OptionalInt_t base, Text_t *remainder) { |
