]> Cypherpunks repositories - gostls13.git/commitdiff
- fixed .x file permissions
authorRobert Griesemer <gri@golang.org>
Tue, 1 Jul 2008 23:48:31 +0000 (16:48 -0700)
committerRobert Griesemer <gri@golang.org>
Tue, 1 Jul 2008 23:48:31 +0000 (16:48 -0700)
- implemented -strict mode if statement
- added readfile() to sys pkg
- removed outdated sys.go

SVN=125572

src/lib/sys.go [deleted file]

diff --git a/src/lib/sys.go b/src/lib/sys.go
deleted file mode 100644 (file)
index 01c1135..0000000
+++ /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 double) (x double, y double);
-func   frexp(a double) (e int, m double);
-func   ldexp(f double, e int) double;
-
-func   Inf(n int) double;
-func   NaN() double;
-func   isInf(arg double, n int) bool;
-
-export modf, frexp, ldexp
-export NaN, isInf, Inf