blob: ffdbbd52977579367c14ee1762f8c7318c78dd29 [file] [log] [blame]
Rich Felker863d6282014-01-02 17:13:19 -05001#include <errno.h>
Rich Felker0b44a032011-02-12 00:22:29 -05002#include "syscall.h"
3
4int brk(void *end)
5{
Rich Felker863d6282014-01-02 17:13:19 -05006 return __syscall_ret(-ENOMEM);
Rich Felker0b44a032011-02-12 00:22:29 -05007}