mirror of
https://github.com/octoleo/restic.git
synced 2024-11-10 23:31:09 +00:00
11 lines
215 B
Go
11 lines
215 B
Go
//go:build !freebsd && !windows
|
|
// +build !freebsd,!windows
|
|
|
|
package restic
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func mknod(path string, mode uint32, dev uint64) (err error) {
|
|
return unix.Mknod(path, mode, int(dev))
|
|
}
|