diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-25 16:03:14 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-25 16:03:14 +0000 |
commit | 1ec44ec77cfde746dc734a3921ec8fbeb6c743ce (patch) | |
tree | dc8924d2cd143c916918c02c33d8762f92f8fa4c /sys/man/2 | |
parent | e4b5f170cffd0d5e788d9090f8f2a9802fe267e9 (diff) |
libc: use usize for sbrk() increment
Diffstat (limited to 'sys/man/2')
-rw-r--r-- | sys/man/2/brk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/man/2/brk b/sys/man/2/brk index 92bd89396..94024058f 100644 --- a/sys/man/2/brk +++ b/sys/man/2/brk @@ -11,7 +11,7 @@ brk, sbrk \- change memory allocation int brk(void *addr) .PP .B -void* sbrk(ulong incr) +void* sbrk(usize incr) .SH DESCRIPTION .I Brk sets the system's idea of the lowest bss location not used by the program |