mknod_windows.go 296 B

12345678910111213
  1. // +build windows
  2. package system
  3. // Mknod is not implemented on Windows.
  4. func Mknod(path string, mode uint32, dev int) error {
  5. return ErrNotSupportedPlatform
  6. }
  7. // Mkdev is not implemented on Windows.
  8. func Mkdev(major int64, minor int64) uint32 {
  9. panic("Mkdev not implemented on Windows.")
  10. }