mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-19 12:04:03 +00:00
7 lines
151 B
Go
7 lines
151 B
Go
package os
|
|
|
|
import "syscall"
|
|
|
|
// Getpagesize returns the underlying system's memory page size.
|
|
func Getpagesize() int { return syscall.Getpagesize() }
|