remove unused __brk function/source file

commit e3bc22f1ef removed all references
to __brk.
This commit is contained in:
Rich Felker 2018-04-17 16:37:30 -04:00
parent d610c14855
commit 502027540b
1 changed files with 0 additions and 7 deletions

View File

@ -1,7 +0,0 @@
#include <stdint.h>
#include "syscall.h"
uintptr_t __brk(uintptr_t newbrk)
{
return __syscall(SYS_brk, newbrk);
}