github.com/bir3/gocompiler@v0.3.205/src/internal/syscall/unix/at_sysnum_freebsd.go (about) 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 import "syscall" 8 9 const ( 10 AT_REMOVEDIR = 0x800 11 AT_SYMLINK_NOFOLLOW = 0x200 12 13 unlinkatTrap uintptr = syscall.SYS_UNLINKAT 14 openatTrap uintptr = syscall.SYS_OPENAT 15 )