delete vestigial references to package syscall

R=rsc
DELTA=8  (0 added, 5 deleted, 3 changed)
OCL=25857
CL=25861
This commit is contained in:
Rob Pike 2009-03-06 16:03:59 -08:00
parent 7bb335c7de
commit 99d00eae3c
7 changed files with 3 additions and 8 deletions

View file

@ -101,7 +101,7 @@ testing.6: flag.install fmt.dirinstall
fmt.dirinstall: io.dirinstall reflect.dirinstall strconv.dirinstall fmt.dirinstall: io.dirinstall reflect.dirinstall strconv.dirinstall
hash.dirinstall: os.dirinstall hash.dirinstall: os.dirinstall
http.dirinstall: bufio.install io.dirinstall net.dirinstall os.dirinstall strings.install log.install http.dirinstall: bufio.install io.dirinstall net.dirinstall os.dirinstall strings.install log.install
io.dirinstall: os.dirinstall syscall.dirinstall sync.dirinstall io.dirinstall: os.dirinstall sync.dirinstall
json.dirinstall: container.dirinstall fmt.dirinstall io.dirinstall math.dirinstall \ json.dirinstall: container.dirinstall fmt.dirinstall io.dirinstall math.dirinstall \
strconv.dirinstall strings.install utf8.install strconv.dirinstall strings.install utf8.install
lang.dirinstall: strconv.dirinstall utf8.install unicode.dirinstall lang.dirinstall: strconv.dirinstall utf8.install unicode.dirinstall

View file

@ -9,7 +9,6 @@ import (
"fmt"; "fmt";
"io"; "io";
"os"; "os";
"syscall";
"testing"; "testing";
) )

View file

@ -7,7 +7,6 @@ package exec
import ( import (
"os"; "os";
"syscall";
) )
// Arguments to Run. // Arguments to Run.

View file

@ -8,7 +8,6 @@ import (
"fmt"; "fmt";
"io"; "io";
"math"; "math";
"syscall";
"testing"; "testing";
) )

View file

@ -11,7 +11,6 @@ package io
import ( import (
"os"; "os";
"syscall";
) )
// ErrEOF is the error returned by Readn and Copyn when they encounter EOF. // ErrEOF is the error returned by Readn and Copyn when they encounter EOF.

View file

@ -7,7 +7,6 @@ package utf8
import ( import (
"fmt"; "fmt";
"io"; "io";
"syscall";
"testing"; "testing";
"utf8"; "utf8";
) )

View file

@ -5,7 +5,7 @@
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
package foo package foo
import "syscall" import "fmt"
func f() { func f() {
syscall := 1 fmt := 1
} }