blob: 584e8940ccfe66ff1dcaff9a693f00b1d29a4e9d [file] [log] [blame]
// +build windows
package system
import (
"errors"
"syscall"
)
func fromStatT(s *syscall.Win32FileAttributeData) (*Stat, error) {
return nil, errors.New("fromStatT should not be called on windows path")
}