Files
creack.pty/fd_helper_other_test.go
2024-10-31 10:42:45 -04:00

15 lines
178 B
Go

//go:build !zos
// +build !zos
package pty
import (
"os"
"testing"
)
func getNonBlockingFile(t *testing.T, file *os.File, path string) *os.File {
t.Helper()
return file
}