mirror of
https://github.com/rwinkhart/sys.git
synced 2026-08-29 13:26:45 -04:00
Change-Id: I62774b8ee0c1a7cc1a3b7009ca860e3fd64a6564 Signed-off-by: Shenghou Ma <minux@golang.org> Reviewed-on: https://go-review.googlesource.com/10182 Reviewed-by: Rob Pike <r@golang.org>
14 lines
286 B
Go
14 lines
286 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 unix
|
|
|
|
// TODO(aram): remove these before Go 1.3.
|
|
const (
|
|
SYS_EXECVE = 59
|
|
SYS_FCNTL = 62
|
|
)
|