spiegel_podman/vendor/go.podman.io/buildah/copier/mknod_int.go
Brent Baude 2e6f29a2df
RUN-4538: Fix buildah vendoring
This PR reflects the upstream change of moving the buildah module from
github.com/containers/buildah to go.podman.io/buildah.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2026-04-21 14:27:58 -05:00

11 lines
178 B
Go

//go:build !windows && !freebsd
package copier
import (
"golang.org/x/sys/unix"
)
func mknod(path string, mode uint32, dev int) error {
return unix.Mknod(path, mode, dev)
}