diff options
author | lloyd <[email protected]> | 2011-11-18 19:48:34 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-11-18 19:48:34 +0000 |
commit | cd3e535b1327e2641932b96573c7b06ddf17774b (patch) | |
tree | df8516b9f903d6675408479e5f0af98e73396a69 /src/math/mp | |
parent | 4f5900af214885db913690f7ba580b3b9398e30f (diff) |
Fix declaration
Diffstat (limited to 'src/math/mp')
-rw-r--r-- | src/math/mp/mp_core.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/math/mp/mp_core.h b/src/math/mp/mp_core.h index 40327b02b..82bdbad53 100644 --- a/src/math/mp/mp_core.h +++ b/src/math/mp/mp_core.h @@ -140,8 +140,7 @@ void bigint_comba_mul16(word z[32], const word x[16], const word y[16]); void bigint_comba_sqr4(word out[8], const word in[4]); void bigint_comba_sqr6(word out[12], const word in[6]); void bigint_comba_sqr8(word out[16], const word in[8]); -void bigint_comba_sqr8(word out[32], const word in[16]); -void bigint_comba_sqr16(word out[64], const word in[32]); +void bigint_comba_sqr16(word out[32], const word in[16]); } |