mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-14 09:32:19 +00:00
parent
78b8651224
commit
c54004fcce
@ -5,7 +5,7 @@
|
||||
|
||||
/* Bare-bones implementation of sbrk: just call memory.grow. */
|
||||
void *sbrk(intptr_t increment) {
|
||||
/* We only supprt page-size increments. */
|
||||
/* We only support page-size increments. */
|
||||
if (increment % PAGESIZE != 0) {
|
||||
abort();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user