2021-06-25 09:30:10 +02:00

20 lines
242 B
Go

// +build !windows
package tar
import (
"os"
)
func isNullDevice(path string) bool {
return path == os.DevNull
}
func sanitizePath(path string) (string, error) {
return path, nil
}
func platformLink(inLink Link) error {
return nil
}