mirror of
https://github.com/make-42/xyosc
synced 2025-01-19 02:57:34 +01:00
9 lines
163 B
Go
9 lines
163 B
Go
//go:build darwin
|
|
|
|
package fsnotify
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
// note: this constant is not defined on BSD
|
|
const openMode = unix.O_EVTONLY | unix.O_CLOEXEC
|