blob: cbd3eca99c24c96002e877cf7b14a76704e2b219 [file] [log] [blame]
#include <stdint.h>
#include <errno.h>
#include "syscall.h"
void* sbrk(intptr_t inc) {
if (inc)
return (void*)__syscall_ret(-ENOMEM);
return (void*)__syscall(SYS_brk, 0);
}