aboutsummaryrefslogtreecommitdiff
path: root/plan9/syscall.go
diff options
context:
space:
mode:
Diffstat (limited to 'plan9/syscall.go')
-rw-r--r--plan9/syscall.go10
1 files changed, 1 insertions, 9 deletions
diff --git a/plan9/syscall.go b/plan9/syscall.go
index a25223b..67e5b01 100644
--- a/plan9/syscall.go
+++ b/plan9/syscall.go
@@ -29,8 +29,6 @@ import (
"bytes"
"strings"
"unsafe"
-
- "golang.org/x/sys/internal/unsafeheader"
)
// ByteSliceFromString returns a NUL-terminated slice of bytes
@@ -82,13 +80,7 @@ func BytePtrToString(p *byte) string {
ptr = unsafe.Pointer(uintptr(ptr) + 1)
}
- var s []byte
- h := (*unsafeheader.Slice)(unsafe.Pointer(&s))
- h.Data = unsafe.Pointer(p)
- h.Len = n
- h.Cap = n
-
- return string(s)
+ return string(unsafe.Slice(p, n))
}
// Single-word zero for use when we need a valid pointer to 0 bytes.