Move osutil to sys package
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
789ff967c1
commit
51510a8806
5 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
// +build !windows,!darwin
|
||||
|
||||
package osutils
|
||||
package sys
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
|
@ -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"
|
|
@ -1,6 +1,6 @@
|
|||
// +build solaris
|
||||
|
||||
package osutils
|
||||
package sys
|
||||
|
||||
import (
|
||||
"errors"
|
|
@ -1,6 +1,6 @@
|
|||
// +build linux
|
||||
|
||||
package osutils
|
||||
package sys
|
||||
|
||||
import (
|
||||
"bufio"
|
|
@ -1,6 +1,6 @@
|
|||
// +build !windows
|
||||
|
||||
package osutils
|
||||
package sys
|
||||
|
||||
import "syscall"
|
||||
|
Loading…
Reference in a new issue