mirror of
https://github.com/sliverarmory/reflektor
synced 2026-08-25 09:14:48 +00:00
9 lines
241 B
Go
9 lines
241 B
Go
//go:build linux && !android && !cgo && (386 || amd64 || (arm && arm.7) || arm64 || ppc64le || riscv64)
|
|
|
|
package memmod
|
|
|
|
func linuxInitCallArgs(includeEnvironment bool) (uintptr, uintptr, uintptr) {
|
|
_ = includeEnvironment
|
|
return 0, 0, 0
|
|
}
|