mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-17 05:07:50 +00:00
10 lines
167 B
Go
10 lines
167 B
Go
//go:build !plan9 && !windows && (!js || !wasm)
|
|
// +build !plan9
|
|
// +build !windows
|
|
// +build !js !wasm
|
|
|
|
package sftp
|
|
|
|
import "syscall"
|
|
|
|
const S_IFMT = syscall.S_IFMT
|