1
0
mirror of https://github.com/restic/restic.git synced 2025-06-19 07:38:36 +00:00

11 lines
211 B
Go
Raw Normal View History

2022-03-28 22:23:47 +02:00
//go:build !freebsd && !windows
// +build !freebsd,!windows
package fs
import "golang.org/x/sys/unix"
func mknod(path string, mode uint32, dev uint64) (err error) {
return unix.Mknod(path, mode, int(dev))
}