mirror of
https://github.com/golang/go.git
synced 2025-11-11 14:11:04 +00:00
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:
parent
7bb335c7de
commit
99d00eae3c
7 changed files with 3 additions and 8 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ import (
|
||||||
"fmt";
|
"fmt";
|
||||||
"io";
|
"io";
|
||||||
"os";
|
"os";
|
||||||
"syscall";
|
|
||||||
"testing";
|
"testing";
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ package exec
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os";
|
"os";
|
||||||
"syscall";
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Arguments to Run.
|
// Arguments to Run.
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ import (
|
||||||
"fmt";
|
"fmt";
|
||||||
"io";
|
"io";
|
||||||
"math";
|
"math";
|
||||||
"syscall";
|
|
||||||
"testing";
|
"testing";
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ package utf8
|
||||||
import (
|
import (
|
||||||
"fmt";
|
"fmt";
|
||||||
"io";
|
"io";
|
||||||
"syscall";
|
|
||||||
"testing";
|
"testing";
|
||||||
"utf8";
|
"utf8";
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue