summaryrefslogtreecommitdiff
path: root/src/pkg/math/sincos.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/math/sincos.go')
-rw-r--r--src/pkg/math/sincos.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/pkg/math/sincos.go b/src/pkg/math/sincos.go
deleted file mode 100644
index 4c1576bea..000000000
--- a/src/pkg/math/sincos.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2010 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 math
-
-// Sincos(x) returns Sin(x), Cos(x).
-//
-// Special conditions are:
-// Sincos(+Inf) = NaN, NaN
-// Sincos(-Inf) = NaN, NaN
-// Sincos(NaN) = NaN, NaN
-func Sincos(x float64) (sin, cos float64) { return Sin(x), Cos(x) }