mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 05:37:38 +03:00
9 lines
155 B
Go
9 lines
155 B
Go
// +build !plan9,!windows windows,go1.5
|
|
|
|
package safefile
|
|
|
|
import "os"
|
|
|
|
func rename(oldname, newname string) error {
|
|
return os.Rename(oldname, newname)
|
|
}
|