mirror of
https://github.com/wazero/wazero
synced 2026-06-21 14:12:37 +00:00
10 lines
184 B
Go
10 lines
184 B
Go
//go:build linux || darwin || freebsd || netbsd || dragonfly || solaris
|
|
|
|
package platform
|
|
|
|
import "syscall"
|
|
|
|
func munmapCodeSegment(code []byte) error {
|
|
return syscall.Munmap(code)
|
|
}
|