Files
asciinema/util/select.go

10 lines
225 B
Go
Raw Permalink Normal View History

2016-05-20 15:52:09 +02:00
// +build darwin freebsd dragonfly
2014-08-09 21:49:10 +02:00
package util
import "syscall"
func Select(nfd int, r *syscall.FdSet, w *syscall.FdSet, e *syscall.FdSet, timeout *syscall.Timeval) error {
return syscall.Select(nfd, r, w, e, timeout)
}