Files
podman/vendor/github.com/containers/buildah/util/util_not_uint64.go
Matthew Heon 502536fe07 Update buildah to current master
Vendor some changes to parsing code that we need for Podman.

Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-08-28 14:28:18 -04:00

15 lines
221 B
Go

// +build darwin
package util
import (
"syscall"
)
func makeHardlinkDeviceAndInode(st *syscall.Stat_t) hardlinkDeviceAndInode {
return hardlinkDeviceAndInode{
device: uint64(st.Dev),
inode: uint64(st.Ino),
}
}