mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
10 lines
191 B
Go
10 lines
191 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package fs
|
|
|
|
import "syscall"
|
|
|
|
// O_NOFOLLOW instructs the kernel to not follow symlinks when opening a file.
|
|
const O_NOFOLLOW int = syscall.O_NOFOLLOW
|