mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
14 lines
260 B
Go
14 lines
260 B
Go
// +build !windows,!freebsd
|
|
|
|
package fsutil
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/tonistiigi/fsutil/types"
|
|
)
|
|
|
|
func createSpecialFile(path string, mode uint32, stat *types.Stat) error {
|
|
return syscall.Mknod(path, mode, int(mkdev(stat.Devmajor, stat.Devminor)))
|
|
}
|