- fixed .x file permissions

- implemented -strict mode if statement
- added readfile() to sys pkg
- removed outdated sys.go

SVN=125572
This commit is contained in:
Robert Griesemer 2008-07-01 16:48:31 -07:00
parent bc8ef4d526
commit 27b4b2e4d3

View File

@ -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