mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
15 lines
274 B
Go
15 lines
274 B
Go
//go:build (linux && !mips && !mipsle && !mips64 && !mips64le) || freebsd || netbsd
|
|
|
|
package copier
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func makeHardlinkDeviceAndInode(st *syscall.Stat_t) hardlinkDeviceAndInode {
|
|
return hardlinkDeviceAndInode{
|
|
device: st.Dev,
|
|
inode: st.Ino,
|
|
}
|
|
}
|