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