//go:build unix package snapshot import "syscall" func mkfifo(path string) error { return syscall.Mkfifo(path, 0o644) }