delete export

TBR=r
OCL=23121
CL=23127
This commit is contained in:
Russ Cox 2009-01-20 14:40:40 -08:00
parent 0183baaf44
commit 839a68469b
234 changed files with 1198 additions and 1199 deletions

View file

@ -8,7 +8,7 @@ package math
* floating-point mod func without infinity or NaN checking
*/
export func Fmod(x, y float64) float64 {
func Fmod(x, y float64) float64 {
if y == 0 {
return x;
}