diff options
author | Rob Pike <r@golang.org> | 2008-07-12 15:56:06 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2008-07-12 15:56:06 -0700 |
commit | 1a5d2d0b4cd1ffe9bc5b54fcbd6b7eb9c27f3fa2 (patch) | |
tree | f81aa65cec1f10d26cc3f45b1817f14ea573da9f /src/lib/math/sys.go | |
parent | 72041e2033ef0eac61c8bb9d7a1711d2acc3b74d (diff) | |
download | golang-1a5d2d0b4cd1ffe9bc5b54fcbd6b7eb9c27f3fa2.tar.gz |
tools to update math lib.
you need a hack to 6ar to do this, but it's not checked in yet
SVN=126943
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 |