12 lines
152 B
Go
12 lines
152 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package internal
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// Stat_t is the Linux Stat_t.
|
|
type Stat_t = unix.Stat_t
|