diff options
author | Russ Cox <rsc@golang.org> | 2009-01-20 14:40:40 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-01-20 14:40:40 -0800 |
commit | 4ae0ed29a283c16d1c83ef704c4d75170c3801e6 (patch) | |
tree | f8305b165ee5ff41e9ef2b0f76e26f7ab3ece269 /src/lib/math/exp.go | |
parent | 3986ef877ccd4db750b5050e318dff78f7e55d19 (diff) | |
download | golang-4ae0ed29a283c16d1c83ef704c4d75170c3801e6.tar.gz |
delete export
TBR=r
OCL=23121
CL=23127
Diffstat (limited to 'src/lib/math/exp.go')
-rw-r--r-- | src/lib/math/exp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/exp.go b/src/lib/math/exp.go index b2697195e..0d06ff9cb 100644 --- a/src/lib/math/exp.go +++ b/src/lib/math/exp.go @@ -82,7 +82,7 @@ import "math" // compiler will convert from decimal to binary accurately enough // to produce the hexadecimal values shown. -export func Exp(x float64) float64 { +func Exp(x float64) float64 { const ( Ln2Hi = 6.93147180369123816490e-01; Ln2Lo = 1.90821492927058770002e-10; |