diff options
author | Robert Griesemer <gri@golang.org> | 2009-08-17 10:01:26 -0700 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-08-17 10:01:26 -0700 |
commit | 94aa012063b72e700b0f42a4d91fd773be17f9ff (patch) | |
tree | 08b63c20cdc7a6161e30d108458ac192cc1b86c5 | |
parent | 78cb50e9614b835201b2f254967999a48b3640b1 (diff) | |
download | golang-94aa012063b72e700b0f42a4d91fd773be17f9ff.tar.gz |
- rename files to match the data types they implement, adusted Makefile
- no other changes
R=r
DELTA=1248 (623 added, 623 deleted, 2 changed)
OCL=33371
CL=33371
-rw-r--r-- | src/pkg/big/Makefile | 4 | ||||
-rw-r--r-- | src/pkg/big/int.go (renamed from src/pkg/big/bigZ.go) | 0 | ||||
-rw-r--r-- | src/pkg/big/int_test.go (renamed from src/pkg/big/bigZ_test.go) | 0 | ||||
-rw-r--r-- | src/pkg/big/nat.go (renamed from src/pkg/big/bigN.go) | 0 | ||||
-rw-r--r-- | src/pkg/big/nat_test.go (renamed from src/pkg/big/bigN_test.go) | 0 |
5 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/big/Makefile b/src/pkg/big/Makefile index d98f5b21b..b64ba40bf 100644 --- a/src/pkg/big/Makefile +++ b/src/pkg/big/Makefile @@ -9,8 +9,8 @@ GOFILES=\ defs.go\ arith.go\ big.go\ - bigN.go\ - bigZ.go\ + nat.go\ + int.go\ OFILES=\ arith_$(GOARCH).$O\ diff --git a/src/pkg/big/bigZ.go b/src/pkg/big/int.go index 3e6bbd15e..3e6bbd15e 100644 --- a/src/pkg/big/bigZ.go +++ b/src/pkg/big/int.go diff --git a/src/pkg/big/bigZ_test.go b/src/pkg/big/int_test.go index 528afdd23..528afdd23 100644 --- a/src/pkg/big/bigZ_test.go +++ b/src/pkg/big/int_test.go diff --git a/src/pkg/big/bigN.go b/src/pkg/big/nat.go index b69656309..b69656309 100644 --- a/src/pkg/big/bigN.go +++ b/src/pkg/big/nat.go diff --git a/src/pkg/big/bigN_test.go b/src/pkg/big/nat_test.go index 8f9f9cc6a..8f9f9cc6a 100644 --- a/src/pkg/big/bigN_test.go +++ b/src/pkg/big/nat_test.go |