vendor/golang.org/x/sys/unix/syscall_unix_gc.go
changeset 265 05c40b36d3b2
parent 256 6d9efbef00a9
equal deleted inserted replaced
264:8f478162d991 265:05c40b36d3b2
     1 // Copyright 2016 The Go Authors. All rights reserved.
     1 // Copyright 2016 The Go Authors. All rights reserved.
     2 // Use of this source code is governed by a BSD-style
     2 // Use of this source code is governed by a BSD-style
     3 // license that can be found in the LICENSE file.
     3 // license that can be found in the LICENSE file.
     4 
     4 
     5 //go:build (darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris) && gc && !ppc64le && !ppc64
     5 //go:build (darwin || dragonfly || freebsd || (linux && !ppc64 && !ppc64le) || netbsd || openbsd || solaris) && gc
     6 // +build darwin dragonfly freebsd linux netbsd openbsd solaris
     6 // +build darwin dragonfly freebsd linux,!ppc64,!ppc64le netbsd openbsd solaris
     7 // +build gc
     7 // +build gc
     8 // +build !ppc64le
       
     9 // +build !ppc64
       
    10 
     8 
    11 package unix
     9 package unix
    12 
    10 
    13 import "syscall"
    11 import "syscall"
    14 
    12