mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00
10 lines
182 B
Go
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))
|
|
}
|