mirror of
https://github.com/golang/go
synced 2024-11-20 04:44:40 -07:00
22c70f268b
Fixes #17092 Change-Id: Ib14e4db13116ebbe4d72c414fb979d27a06d6174 Reviewed-on: https://go-review.googlesource.com/33011 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
14 lines
274 B
Go
14 lines
274 B
Go
// Copyright 2016 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 linux
|
|
// +build !386,!arm
|
|
|
|
package syscall
|
|
|
|
const (
|
|
sys_SETGID = SYS_SETGID
|
|
sys_SETUID = SYS_SETUID
|
|
)
|