summaryrefslogtreecommitdiff
path: root/src/pkg/bignum/bignum.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/bignum/bignum.go')
-rwxr-xr-xsrc/pkg/bignum/bignum.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pkg/bignum/bignum.go b/src/pkg/bignum/bignum.go
index 2b36fbd75..7d2dde61f 100755
--- a/src/pkg/bignum/bignum.go
+++ b/src/pkg/bignum/bignum.go
@@ -12,7 +12,6 @@
package bignum
import (
- "bignum";
"fmt";
)
@@ -308,9 +307,6 @@ func (x Natural) Sub(y Natural) Natural {
}
-// MulAdd128 is defined in arith.go and arith.s .
-func MulAdd128(x, y, c uint64) (z1, z0 uint64)
-
// Returns z1 = (x*y + c) div B, z0 = (x*y + c) mod B.
//
func muladd11(x, y, c digit) (digit, digit) {