summaryrefslogtreecommitdiff
path: root/src/pkg/time/sys_plan9.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/time/sys_plan9.go')
-rw-r--r--src/pkg/time/sys_plan9.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/pkg/time/sys_plan9.go b/src/pkg/time/sys_plan9.go
deleted file mode 100644
index abe8649a2..000000000
--- a/src/pkg/time/sys_plan9.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2011 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 time
-
-import (
- "os"
- "syscall"
-)
-
-func sysSleep(t int64) os.Error {
- err := syscall.Sleep(t)
- if err != nil {
- return os.NewSyscallError("sleep", err)
- }
- return nil
-}