Commit a4b66b77 authored by Shenghou Ma's avatar Shenghou Ma

os: fix build.

CL 36800043 and CL 36930044 have a merge conflict that I overlooked.

R=golang-dev
CC=golang-dev
https://golang.org/cl/39850043
parent 4f2cfdc7
......@@ -250,3 +250,8 @@ func Create(name string) (file *File, err error) {
// lstat is overridden in tests.
var lstat = Lstat
// Rename renames (moves) a file. OS-specific restrictions might apply.
func Rename(oldpath, newpath string) error {
return rename(oldpath, newpath)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment