blob: 5d4483ce261816670d2972b89b01e61bfc9a2f1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package tarheader
import (
"archive/tar"
"os"
)
// sysStat populates hdr from system-dependent fields of fi without performing
// any OS lookups. It is a no-op on Windows.
func sysStat(os.FileInfo, *tar.Header) error {
return nil
}
|