diff options
author | Russ Cox <rsc@golang.org> | 2009-09-24 14:27:52 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-09-24 14:27:52 -0700 |
commit | ec551bf8ac64f4e83c1362fe40f950fe6961d047 (patch) | |
tree | 1f920b43a5f9d7e3954b173e737eefb60d71acb5 /src/pkg/math/sqrt_decl.go | |
parent | f2f970d8e42dcb973cd1926d2a5c1bb39be53d57 (diff) | |
download | golang-ec551bf8ac64f4e83c1362fe40f950fe6961d047.tar.gz |
install assembly math.Sqrt on amd64
R=r
DELTA=33 (32 added, 0 deleted, 1 changed)
OCL=34983
CL=34986
Diffstat (limited to 'src/pkg/math/sqrt_decl.go')
-rw-r--r-- | src/pkg/math/sqrt_decl.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pkg/math/sqrt_decl.go b/src/pkg/math/sqrt_decl.go new file mode 100644 index 000000000..4e9112d26 --- /dev/null +++ b/src/pkg/math/sqrt_decl.go @@ -0,0 +1,8 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package math + +func Sqrt(x float64) float64 + |