Commit 27b4b2e4 authored by Robert Griesemer's avatar Robert Griesemer

- fixed .x file permissions

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

SVN=125572
parent bc8ef4d5
// 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment