blob: 6dec39378578c8f16c0ebdb0b3adb4e36bf9c2dc [file] [log] [blame]
// +build windows android
package sftp
import (
"os"
)
func lsLinksUIDGID(fi os.FileInfo) (numLinks uint64, uid, gid string) {
return 1, "0", "0"
}