17 lines
195 B
Go
Raw Permalink Normal View History

2019-05-09 11:50:44 -05:00
// +build windows
package chroot
import (
"errors"
"os"
)
func lockFile(*os.File) error {
return errors.New("not supported on Windows")
}
func unlockFile(f *os.File) error {
return nil
}