From: Robert Griesemer Date: Mon, 17 Aug 2009 17:01:26 +0000 (-0700) Subject: - rename files to match the data types they implement, adusted Makefile X-Git-Tag: weekly.2009-11-06~859 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=350a8e1a86d518e3e25761f0676243b47d2c54f3;p=gostls13.git - 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 --- diff --git a/src/pkg/big/Makefile b/src/pkg/big/Makefile index d98f5b21bd..b64ba40bf5 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 similarity index 100% rename from src/pkg/big/bigZ.go rename to src/pkg/big/int.go diff --git a/src/pkg/big/bigZ_test.go b/src/pkg/big/int_test.go similarity index 100% rename from src/pkg/big/bigZ_test.go rename to src/pkg/big/int_test.go diff --git a/src/pkg/big/bigN.go b/src/pkg/big/nat.go similarity index 100% rename from src/pkg/big/bigN.go rename to src/pkg/big/nat.go diff --git a/src/pkg/big/bigN_test.go b/src/pkg/big/nat_test.go similarity index 100% rename from src/pkg/big/bigN_test.go rename to src/pkg/big/nat_test.go