Commit 1da8e6ee authored by David Symonds's avatar David Symonds Committed by Andrew Gerrand

sys: add import comments.

Change-Id: I0ebbb4f2da41bea7871f893332f2e4847b1bfefa
Reviewed-on: https://go-review.googlesource.com/1241Reviewed-by: 's avatarAndrew Gerrand <adg@golang.org>
parent 98c940b1
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
// These calls return err == nil to indicate success; otherwise // These calls return err == nil to indicate success; otherwise
// err represents an operating system error describing the failure and // err represents an operating system error describing the failure and
// holds a value of type syscall.ErrorString. // holds a value of type syscall.ErrorString.
package plan9 package plan9 // import "golang.org/x/sys/plan9"
import "unsafe" import "unsafe"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
// These calls return err == nil to indicate success; otherwise // These calls return err == nil to indicate success; otherwise
// err represents an operating system error describing the failure and // err represents an operating system error describing the failure and
// holds a value of type syscall.Errno. // holds a value of type syscall.Errno.
package unix package unix // import "golang.org/x/sys/unix"
import "unsafe" import "unsafe"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
// These calls return err == nil to indicate success; otherwise // These calls return err == nil to indicate success; otherwise
// err represents an operating system error describing the failure and // err represents an operating system error describing the failure and
// holds a value of type syscall.Errno. // holds a value of type syscall.Errno.
package windows package windows // import "golang.org/x/sys/windows"
import ( import (
"syscall" "syscall"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment