mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 01:47:51 +08:00
6ced40733c
The syscall package exposes an EPIPE on Windows, but it's not what Windows APIs return. The error number 232 is what is semantically EPIPE.
8 lines
88 B
Go
8 lines
88 B
Go
//+build !windows,!plan9,!js
|
|
|
|
package eval
|
|
|
|
import "syscall"
|
|
|
|
var epipe = syscall.EPIPE
|