...

Source file src/pkg/internal/syscall/unix/at_aix.go

     1	// Copyright 2018 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	
     5	package unix
     6	
     7	//go:cgo_import_dynamic libc_fstatat fstatat "libc.a/shr_64.o"
     8	//go:cgo_import_dynamic libc_openat openat "libc.a/shr_64.o"
     9	//go:cgo_import_dynamic libc_unlinkat unlinkat "libc.a/shr_64.o"
    10	
    11	const (
    12		AT_REMOVEDIR        = 0x1
    13		AT_SYMLINK_NOFOLLOW = 0x1
    14	)
    15	

View as plain text