setuidgid_32_linux.go 305 B

1234567891011121314
  1. // Copyright 2016 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build linux && (386 || arm)
  5. package syscall
  6. const (
  7. sys_GETEUID = SYS_GETEUID32
  8. sys_SETGID = SYS_SETGID32
  9. sys_SETUID = SYS_SETUID32
  10. )