mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-11-06 21:31:51 +00:00
We no longer have a need to maintain basics as a separate component. Folding it into libc-bottom-half eliminates a fair amount of redundancy.
12 lines
275 B
C
12 lines
275 B
C
#ifndef __wasilibc___macro_PAGESIZE_h
|
|
#define __wasilibc___macro_PAGESIZE_h
|
|
|
|
/*
|
|
* The page size in WebAssembly is fixed at 64 KiB. If this ever changes,
|
|
* it's expected that applications will need to opt in, so we can change
|
|
* this.
|
|
*/
|
|
#define PAGESIZE (0x10000)
|
|
|
|
#endif
|