summaryrefslogtreecommitdiff
path: root/src/lib/math/exp.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/math/exp.go')
-rw-r--r--src/lib/math/exp.go2
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;