mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 02:37:50 +08:00
641f0ebf04
This addresses #952.
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
|
|
}
|