libc: use usize for sbrk() increment

This commit is contained in:
cinap_lenrek 2021-07-25 16:03:14 +00:00
parent e4b5f170cf
commit 1ec44ec77c
3 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ brk(void *p)
}
void*
sbrk(ulong n)
sbrk(usize n)
{
uintptr bl;