blob: 1811542ab3f3e4bc0a478231559f642f389c45ca [file] [log] [blame]
// +build windows
package system
func Mknod(path string, mode uint32, dev int) error {
return ErrNotSupportedPlatform
}
func Mkdev(major int64, minor int64) uint32 {
panic("Mkdev not implemented on Windows.")
}