diff options
Diffstat (limited to 'src/lib/math/sys.go')
-rw-r--r-- | src/lib/math/sys.go | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/math/sys.go b/src/lib/math/sys.go deleted file mode 100644 index a24c8196e..000000000 --- a/src/lib/math/sys.go +++ /dev/null @@ -1,16 +0,0 @@ -// 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 sys - -func modf(a float64) (x float64, y float64); -func frexp(a float64) (e int, m float64); -func ldexp(f float64, e int) float64; - -func Inf(n int) float64; -func NaN() float64; -func isInf(arg float64, n int) bool; - -export modf, frexp, ldexp -export NaN, isInf, Inf |