diff options
author | Russ Cox <rsc@golang.org> | 2009-09-17 10:27:04 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-09-17 10:27:04 -0700 |
commit | e79b89f07fbe2053c5ded679ada527e6a27b3b0a (patch) | |
tree | 96bb437a1d051ac0f6b76d09ac22aad882fa6d60 /src/pkg/debug/proc/proc.go | |
parent | 3f4f89ac9bb7300c41b6c66e0d4fd0c9fabce9e8 (diff) | |
download | golang-e79b89f07fbe2053c5ded679ada527e6a27b3b0a.tar.gz |
unused imports
R=r
OCL=34731
CL=34731
Diffstat (limited to 'src/pkg/debug/proc/proc.go')
-rw-r--r-- | src/pkg/debug/proc/proc.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pkg/debug/proc/proc.go b/src/pkg/debug/proc/proc.go index e8c62f22b..c67e02fea 100644 --- a/src/pkg/debug/proc/proc.go +++ b/src/pkg/debug/proc/proc.go @@ -13,15 +13,15 @@ package proc // and proc_darwin.go do, because deps.bash only looks at // this file. import ( - "container/vector"; - "fmt"; - "io"; + _ "container/vector"; + _ "fmt"; + _ "io"; "os"; - "runtime"; + _ "runtime"; "strconv"; - "strings"; - "sync"; - "syscall"; + _ "strings"; + _ "sync"; + _ "syscall"; ) type Word uint64 |