mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
d0be34c227
This has created a lot of //go:build lines.
13 lines
169 B
Go
13 lines
169 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package eval_test
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func exitWaitStatus(exit uint32) syscall.WaitStatus {
|
|
return syscall.WaitStatus{exit}
|
|
}
|