summaryrefslogtreecommitdiff
path: root/test/stringrange.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-05-08 15:21:41 -0700
committerRuss Cox <rsc@golang.org>2009-05-08 15:21:41 -0700
commitdfa70aacecca54bcd2d60156f99dc7b4f20fdd8a (patch)
tree5b8c80c41b4110b57cef1a0945350c2caf7557e2 /test/stringrange.go
parentf721e4efbb14275164ad2e1f341abb1769ac556d (diff)
downloadgo-dfa70aacecca54bcd2d60156f99dc7b4f20fdd8a.tar.gz
move things out of sys into os and runtime
R=r OCL=28569 CL=28573
Diffstat (limited to 'test/stringrange.go')
-rw-r--r--test/stringrange.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/stringrange.go b/test/stringrange.go
index 4d581d70f..32ed1e5f0 100644
--- a/test/stringrange.go
+++ b/test/stringrange.go
@@ -8,6 +8,7 @@ package main
import(
"fmt";
+ "os";
"utf8";
)
@@ -56,6 +57,6 @@ func main() {
if !ok {
fmt.Println("BUG: stringrange");
- sys.Exit(1)
+ os.Exit(1)
}
}