mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
223 B
Go
12 lines
223 B
Go
package sysx
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const (
|
|
AtSymlinkNofollow = unix.AT_SYMLINK_NOFOLLOW
|
|
)
|
|
|
|
func Fchmodat(dirfd int, path string, mode uint32, flags int) error {
|
|
return unix.Fchmodat(dirfd, path, mode, flags)
|
|
}
|