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
5package 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
11const (
12	AT_REMOVEDIR        = 0x1
13	AT_SYMLINK_NOFOLLOW = 0x1
14	UTIME_OMIT          = -0x3
15)
16