diff options
| author | Ed Yu <edyu@users.noreply.github.com> | 2024-03-12 08:39:53 -0700 |
|---|---|---|
| committer | Ed Yu <edyu@users.noreply.github.com> | 2024-03-12 11:01:09 -0700 |
| commit | dd74a57c442008e19c31d1805531683c8a62f7c8 (patch) | |
| tree | 209d61a04588f93f589928fbab18704b6f7ec844 /core/math/big/internal.odin | |
| parent | d6353daf91e8cea613ceca705f482062cc1538eb (diff) | |
Expose internal invmod and int_exponent_mod with more consistent naming
Diffstat (limited to 'core/math/big/internal.odin')
| -rw-r--r-- | core/math/big/internal.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/math/big/internal.odin b/core/math/big/internal.odin index 03623e7f2..07e1e6c03 100644 --- a/core/math/big/internal.odin +++ b/core/math/big/internal.odin @@ -2047,6 +2047,7 @@ internal_int_inverse_modulo :: proc(dest, a, b: ^Int, allocator := context.alloc return _private_inverse_modulo(dest, a, b) } +internal_int_invmod :: internal_int_inverse_modulo internal_invmod :: proc{ internal_int_inverse_modulo, } /* |