diff options
author | Charles L. Dorian <cldorian@gmail.com> | 2010-01-15 13:21:36 -0800 |
---|---|---|
committer | Charles L. Dorian <cldorian@gmail.com> | 2010-01-15 13:21:36 -0800 |
commit | 684702af5f19ede4de2a5b69fd1ba9cbe64a68d6 (patch) | |
tree | d5e9ac14182710fe2509dde989fd99c914659f48 /src/pkg/math/exp_decl.go | |
parent | 2085acf537cda6556399b5a24c721f40a09acb60 (diff) | |
download | golang-684702af5f19ede4de2a5b69fd1ba9cbe64a68d6.tar.gz |
math: 386 FPU functions
sin, cos, tan, asin, acos, atan, exp, log, log10,
floor, ceil, and fabs
R=rsc
CC=golang-dev
http://codereview.appspot.com/189083
Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/math/exp_decl.go')
-rw-r--r-- | src/pkg/math/exp_decl.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pkg/math/exp_decl.go b/src/pkg/math/exp_decl.go new file mode 100644 index 000000000..dc8404c4f --- /dev/null +++ b/src/pkg/math/exp_decl.go @@ -0,0 +1,7 @@ +// Copyright 2010 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 Exp(x float64) float64 |