aboutsummaryrefslogtreecommitdiff
path: root/src/internal/syscall/unix/at_sysnum_darwin.go
blob: 77b0af80b5de22ff8a83330dfb391cf87fae5185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package unix

const (
	AT_EACCESS          = 0x10
	AT_FDCWD            = -0x2
	AT_REMOVEDIR        = 0x80
	AT_SYMLINK_NOFOLLOW = 0x0020

	UTIME_OMIT = -0x2
)