// +build baremetal wasi wasm// This file emulates some process-related functions that are only available// under a real operating system.package syscall
funcGetuid()int{return-1}funcGeteuid()int{return-1}funcGetgid()int{return-1}funcGetegid()int{return-1}funcGetpid()int{return-1}funcGetppid()int{return-1}