musl-tcc/src/linux/brk.c

10 lines
136 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#define _BSD_SOURCE
#include <unistd.h>
#include <errno.h>
#include "syscall.h"
int brk(void *end)
{
return __syscall_ret(-ENOMEM);
}