Files
llgo/runtime/internal/clite/os/stat_darwin.go
2025-05-16 20:36:43 +08:00

14 lines
232 B
Go

package os
import (
_ "unsafe"
c "github.com/goplus/llgo/runtime/internal/clite"
)
//go:linkname Stat C.stat64
func Stat(path *c.Char, buf *StatT) c.Int
//go:linkname Lstat C.lstat64
func Lstat(path *c.Char, buf *StatT) c.Int