Files
moby/pkg/archive/dev_unix.go
Derek McGowan 315891dd2e Remove import comments
Signed-off-by: Derek McGowan <derek@mcg.dev>
2024-12-19 10:13:45 -08:00

10 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))
}