mirror of
https://github.com/containers/podman.git
synced 2026-07-19 03:32:00 -04:00
Also includes a small change to make us of https://github.com/containers/buildah/pull/5039 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
17 lines
174 B
Go
17 lines
174 B
Go
//go:build !linux && !darwin
|
|
// +build !linux,!darwin
|
|
|
|
package util
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func UID(st os.FileInfo) int {
|
|
return 0
|
|
}
|
|
|
|
func GID(st os.FileInfo) int {
|
|
return 0
|
|
}
|