diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-04-17 16:37:30 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-04-17 19:23:01 -0400 |
commit | 502027540bafd0681bfc46b0ae28639e51bba6a6 (patch) | |
tree | 708a930304e9efec09d3baab22d56e7340932b94 /src | |
parent | d610c148554766f2a0e48304fe2550b340f84872 (diff) | |
download | musl-502027540bafd0681bfc46b0ae28639e51bba6a6.tar.gz musl-502027540bafd0681bfc46b0ae28639e51bba6a6.tar.bz2 musl-502027540bafd0681bfc46b0ae28639e51bba6a6.tar.xz musl-502027540bafd0681bfc46b0ae28639e51bba6a6.zip |
remove unused __brk function/source file
commit e3bc22f1eff87b8f029a6ab31f1a269d69e4b053 removed all references
to __brk.
Diffstat (limited to 'src')
-rw-r--r-- | src/malloc/__brk.c | 7 |
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); -} |