elvish/pkg/eval/external_cmd_windows_test.go
Qi Xiao d0be34c227 Run gofmt with Go 1.17.
This has created a lot of //go:build lines.
2021-08-23 00:19:49 +01:00

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}
}