From: Robert Griesemer Date: Tue, 1 Jul 2008 23:48:31 +0000 (-0700) Subject: - fixed .x file permissions X-Git-Tag: weekly.2009-11-06~3578 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=27b4b2e4d345d3d0828fa07f359370127afaec10;p=gostls13.git - fixed .x file permissions - implemented -strict mode if statement - added readfile() to sys pkg - removed outdated sys.go SVN=125572 --- diff --git a/src/lib/sys.go b/src/lib/sys.go deleted file mode 100644 index 01c1135605..0000000000 --- a/src/lib/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 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