mirror of
https://github.com/NotAShelf/batmon.git
synced 2025-01-31 22:32:27 +00:00
9 lines
213 B
Go
9 lines
213 B
Go
//go:build freebsd || openbsd || netbsd || dragonfly
|
|
// +build freebsd openbsd netbsd dragonfly
|
|
|
|
package fsnotify
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const openMode = unix.O_NONBLOCK | unix.O_RDONLY | unix.O_CLOEXEC
|