2014-11-13 12:00:04 -08:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package system
|
|
|
|
|
2015-07-29 00:13:12 +08:00
|
|
|
// Mknod is not implemented on Windows.
|
2014-11-13 12:00:04 -08:00
|
|
|
func Mknod(path string, mode uint32, dev int) error {
|
|
|
|
return ErrNotSupportedPlatform
|
|
|
|
}
|
|
|
|
|
2015-07-29 00:13:12 +08:00
|
|
|
// Mkdev is not implemented on Windows.
|
2014-11-13 12:00:04 -08:00
|
|
|
func Mkdev(major int64, minor int64) uint32 {
|
2015-05-07 15:14:11 -07:00
|
|
|
panic("Mkdev not implemented on Windows.")
|
2014-11-13 12:00:04 -08:00
|
|
|
}
|