mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-13 12:19:36 +00:00
7 lines
170 B
Go
7 lines
170 B
Go
//go:build freebsd || openbsd || netbsd || dragonfly
|
|
|
|
package fsnotify
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const openMode = unix.O_NONBLOCK | unix.O_RDONLY | unix.O_CLOEXEC
|