blob: 38f91bcde28213d268fc76adc4699aa308481da9 [file] [log] [blame]
//go:build plan9
// +build plan9
package sftp
import (
"syscall"
)
func fakeFileInfoSys() interface{} {
return &syscall.Dir{}
}
func testOsSys(sys interface{}) error {
return nil
}