Files
virtual-kubelet/vendor/github.com/hyperhq/hypercli/pkg/system/mknod_windows.go
2017-12-05 17:53:58 -06:00

14 lines
296 B
Go

// +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.")
}