mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 10:57:50 +08:00
9 lines
122 B
Go
9 lines
122 B
Go
|
package eval
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func isSIGPIPE(s syscall.Signal) bool {
|
||
|
// Windows doesn't have SIGPIPE.
|
||
|
return false
|
||
|
}
|