mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-10 10:55:46 +00:00
9 lines
182 B
Go
9 lines
182 B
Go
//go:build !windows && !freebsd
|
|
|
|
package archive
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func mknod(path string, mode uint32, dev uint64) error {
|
|
return unix.Mknod(path, mode, int(dev))
|
|
}
|