Source file src/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 //go:cgo_import_dynamic libc_readlinkat readlinkat "libc.a/shr_64.o" 11 //go:cgo_import_dynamic libc_mkdirat mkdirat "libc.a/shr_64.o" 12 13 const ( 14 AT_EACCESS = 0x1 15 AT_FDCWD = -0x02 16 AT_REMOVEDIR = 0x1 17 AT_SYMLINK_NOFOLLOW = 0x1 18 UTIME_OMIT = -0x3 19 ) 20