Initial commit
This commit is contained in:
13
vendor/github.com/hyperhq/hypercli/pkg/system/mknod_windows.go
generated
vendored
Normal file
13
vendor/github.com/hyperhq/hypercli/pkg/system/mknod_windows.go
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
// +build windows
|
||||
|
||||
package system
|
||||
|
||||
// Mknod is not implemented on Windows.
|
||||
func Mknod(path string, mode uint32, dev int) error {
|
||||
return ErrNotSupportedPlatform
|
||||
}
|
||||
|
||||
// Mkdev is not implemented on Windows.
|
||||
func Mkdev(major int64, minor int64) uint32 {
|
||||
panic("Mkdev not implemented on Windows.")
|
||||
}
|
||||
Reference in New Issue
Block a user