mirror of
https://github.com/golang/go
synced 2024-11-06 10:36:13 -07:00
38631846bf
Auto-generated using the following bash script: for i in z*_*_*.go; do goosgoarch=`basename ${i/${i/_*/}_/} .go` goos=${goosgoarch/_*/} goarch=${goosgoarch/*_/} echo $i $goos $goarch [ "$goos" = "windows" ] && continue sed -i -e "/^package /i\/\/ +build $goarch,$goos\n" "$i" done Change-Id: I756fee551d1698080e4591fed8f058ae0450aaa5 Signed-off-by: Shenghou Ma <minux@golang.org> Reviewed-on: https://go-review.googlesource.com/10113 Reviewed-by: Ian Lance Taylor <iant@golang.org>
14 lines
289 B
Go
14 lines
289 B
Go
// Copyright 2014 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.
|
|
|
|
// +build amd64,solaris
|
|
|
|
package syscall
|
|
|
|
// TODO(aram): remove these before Go 1.3.
|
|
const (
|
|
SYS_EXECVE = 59
|
|
SYS_FCNTL = 62
|
|
)
|