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