- switched most of existing Go code to new export syntax

- adjusted lang doc

R=r
DELTA=192  (26 added, 65 deleted, 101 changed)
OCL=13844
CL=13848
This commit is contained in:
Robert Griesemer 2008-08-04 17:17:59 -07:00
parent d28acc42ec
commit 2f4352a26d
25 changed files with 118 additions and 157 deletions

View file

@ -4,13 +4,11 @@
package math
export fmod
/*
* floating-point mod func without infinity or NaN checking
*/
func
export func
fmod(x, y float64) float64
{
var yexp, rexp int;