Sign in
cobalt
/
cobalt
/
fc84fc2a551a0cf60d391fb3e7d8229e6f9a9daf
/
.
/
third_party
/
musl
/
src
/
linux
/
brk.c
blob: a6173e07f30d8cf6078fb5da5086a8fe332c2eaf [
file
]
#define
_BSD_SOURCE
#include
<unistd.h>
#include
<errno.h>
#include
"syscall.h"
int
brk
(
void
*
end
)
{
return
__syscall_ret
(-
ENOMEM
);
}