1// +build darwin dragonfly freebsd linux netbsd openbsd solaris
2
3package command
4
5import (
6	"os"
7	"os/signal"
8
9	"golang.org/x/sys/unix"
10)
11
12func setupWindowNotification(ch chan<- os.Signal) {
13	signal.Notify(ch, unix.SIGWINCH)
14}
15