// 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

import (
	
	_  // for linkname
)

func ( int,  string,  int) error {
	return unlinkat(, , )
}

func ( int,  string,  int,  uint32) (int, error) {
	return openat(, , , )
}

func ( int,  string,  *syscall.Stat_t,  int) error {
	return fstatat(, , , )
}

//go:linkname unlinkat syscall.unlinkat
func ( int,  string,  int) error

//go:linkname openat syscall.openat
func ( int,  string,  int,  uint32) (int, error)

//go:linkname fstatat syscall.fstatat
func ( int,  string,  *syscall.Stat_t,  int) error