Move osutil to sys package

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2016-11-29 15:38:24 -08:00
parent 789ff967c1
commit 51510a8806
5 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
// +build !windows,!darwin
package osutils
package sys
import (
"io/ioutil"

View File

@ -3,7 +3,7 @@
// Package osutils provide access to the Get Child and Set Child prctl
// flags.
// See http://man7.org/linux/man-pages/man2/prctl.2.html
package osutils
package sys
import (
"syscall"

View File

@ -1,6 +1,6 @@
// +build solaris
package osutils
package sys
import (
"errors"

View File

@ -1,6 +1,6 @@
// +build linux
package osutils
package sys
import (
"bufio"

View File

@ -1,6 +1,6 @@
// +build !windows
package osutils
package sys
import "syscall"