diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-13 02:09:18 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-13 02:09:18 -0400 |
| commit | 158a1c6ad2d9b3f2a598e6d1d8debcc824ad73d0 (patch) | |
| tree | c7f05fc95b47e51bd9aa200860ebfdecee91fe57 /builtins/integers.h | |
| parent | a32d90fcd737a27fd2d098a8d81b5965917439cf (diff) | |
More fixes
Diffstat (limited to 'builtins/integers.h')
| -rw-r--r-- | builtins/integers.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtins/integers.h b/builtins/integers.h index a586dfcf..f93e7abf 100644 --- a/builtins/integers.h +++ b/builtins/integers.h @@ -50,9 +50,9 @@ int32_t Int$compare(const Int_t *x, const Int_t *y, const TypeInfo *type); int32_t Int$compare_value(const Int_t x, const Int_t y); bool Int$equal(const Int_t *x, const Int_t *y, const TypeInfo *type); bool Int$equal_value(const Int_t x, const Int_t y); -CORD Int$format(Int_t i, int64_t digits); -CORD Int$hex(Int_t i, int64_t digits, bool uppercase, bool prefix); -CORD Int$octal(Int_t i, int64_t digits, bool prefix); +CORD Int$format(Int_t i, Int_t digits); +CORD Int$hex(Int_t i, Int_t digits, bool uppercase, bool prefix); +CORD Int$octal(Int_t i, Int_t digits, bool prefix); void Int$init_random(long seed); Int_t Int$random(Int_t min, Int_t max); Range_t Int$to(Int_t from, Int_t to); |
