mirror of
https://github.com/golang/sys.git
synced 2026-02-08 03:36:03 +03:00
Change-Id: I71b9023fcb6c9860ea35ba0d2cf77a6eed5176b9 Reviewed-on: https://go-review.googlesource.com/c/sys/+/357329 Reviewed-by: Jason A. Donenfeld <Jason@zx2c4.com> Reviewed-by: David Crawshaw <crawshaw@golang.org> Trust: Jason A. Donenfeld <Jason@zx2c4.com> Trust: David Crawshaw <crawshaw@golang.org> Run-TryBot: Jason A. Donenfeld <Jason@zx2c4.com> TryBot-Result: Go Bot <gobot@golang.org>
14 lines
314 B
Go
14 lines
314 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build windows && go1.9
|
|
// +build windows,go1.9
|
|
|
|
package windows
|
|
|
|
import "syscall"
|
|
|
|
type Errno = syscall.Errno
|
|
type SysProcAttr = syscall.SysProcAttr
|