summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-04-17 16:37:30 -0400
committerRich Felker <dalias@aerifal.cx>2018-04-17 19:23:01 -0400
commit502027540bafd0681bfc46b0ae28639e51bba6a6 (patch)
tree708a930304e9efec09d3baab22d56e7340932b94 /src
parentd610c148554766f2a0e48304fe2550b340f84872 (diff)
downloadmusl-502027540bafd0681bfc46b0ae28639e51bba6a6.tar.gz
remove unused __brk function/source file
commit e3bc22f1eff87b8f029a6ab31f1a269d69e4b053 removed all references to __brk.
Diffstat (limited to 'src')
-rw-r--r--src/malloc/__brk.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/malloc/__brk.c b/src/malloc/__brk.c
deleted file mode 100644
index 4c9119b4..00000000
--- a/src/malloc/__brk.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <stdint.h>
-#include "syscall.h"
-
-uintptr_t __brk(uintptr_t newbrk)
-{
- return __syscall(SYS_brk, newbrk);
-}