spiegel_podman/vendor/github.com/moby/go-archive/dev_darwin.go
renovate[bot] 7004e42cb6
Update module github.com/moby/go-archive to v0.3.0 [SECURITY]
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-08-19 07:57:27 +00:00

21 lines
527 B
Go

//go:build darwin
package archive
import (
"os"
"golang.org/x/sys/unix"
)
func mknod(path string, mode uint32, dev uint64) error {
return unix.Mknod(path, mode, int(dev)) // #nosec G115 -- Required conversion for the platform-specific Mknod API.
}
func mknodInRoot(root *os.Root, path string, mode uint32, dev uint64) error {
abs, err := fsRootPath(root.Name(), path)
if err != nil {
return err
}
return unix.Mknod(abs, mode, int(dev)) // #nosec G115 -- Required conversion for the platform-specific Mknod API.
}