Commit ed490dbe authored by Russ Cox's avatar Russ Cox

add author lines

R=r
DELTA=150  (147 added, 0 deleted, 3 changed)
OCL=19968
CL=19977
parent b1297aa0
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// $G $F.go && $L $F.$A && (./$A.out || echo BUG: math fails)
package math package math
import ( import (
......
...@@ -46,7 +46,7 @@ export func Asin(arg float64) float64 { ...@@ -46,7 +46,7 @@ export func Asin(arg float64) float64 {
} }
export func Acos(arg float64) float64 { export func Acos(arg float64) float64 {
if(arg > 1 || arg < -1) { if arg > 1 || arg < -1 {
return sys.NaN(); return sys.NaN();
} }
return pio2 - Asin(arg); return pio2 - Asin(arg);
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// $G $F.go && $L $F.$A && ./$A.out
package time package time
import ( import (
......
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