vibetunnel/linux/pkg/session/select_darwin.go
Helmut Januschka afee29f2e3
fix: add missing newlines to platform-specific select files (#36)
- Add proper newlines at end of select_darwin.go and select_linux.go
- Resolves gofmt formatting issues in CI
- Ensures all Go files follow standard formatting conventions
2025-06-20 12:56:14 +02:00

11 lines
299 B
Go

//go:build darwin
// +build darwin
package session
import "syscall"
// selectCall wraps syscall.Select for Darwin (returns only error)
func selectCall(nfd int, r *syscall.FdSet, w *syscall.FdSet, e *syscall.FdSet, timeout *syscall.Timeval) error {
return syscall.Select(nfd, r, w, e, timeout)
}