diff options
Diffstat (limited to 'libgo/go/internal/syscall/unix/at_aix.go')
-rw-r--r-- | libgo/go/internal/syscall/unix/at_aix.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libgo/go/internal/syscall/unix/at_aix.go b/libgo/go/internal/syscall/unix/at_aix.go new file mode 100644 index 00000000000..8ee49599547 --- /dev/null +++ b/libgo/go/internal/syscall/unix/at_aix.go @@ -0,0 +1,10 @@ +// 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_REMOVEDIR = 0x1 + AT_SYMLINK_NOFOLLOW = 0x1 +) |