diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2009-07-26 14:25:08 -0400 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-08-19 12:43:12 -0700 |
| commit | e8eb5722f95db005071ffb975157778deb7efb0b (patch) | |
| tree | 461ae2464e5d33d532fa40b74da43a8d17387386 /libc/sysdeps/linux/common | |
| parent | bc60477d6547a61149bb524d61560e036e44b1f9 (diff) | |
| download | uClibc-alpine-e8eb5722f95db005071ffb975157778deb7efb0b.tar.bz2 uClibc-alpine-e8eb5722f95db005071ffb975157778deb7efb0b.tar.xz | |
enable sbrk() for everyone
The sbrk() function can be used to merely query sizes and for that, no-mmu
works the same as mmu. It can also sometimes increase data segments on
no-mmu systems provided the trailing memory is free. So, there is no real
reason to exclude this function for no-mmu ports.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/sysdeps/linux/common')
| -rw-r--r-- | libc/sysdeps/linux/common/Makefile.in | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/common/Makefile.in b/libc/sysdeps/linux/common/Makefile.in index d9785cd9d..057ccfd9b 100644 --- a/libc/sysdeps/linux/common/Makefile.in +++ b/libc/sysdeps/linux/common/Makefile.in @@ -10,10 +10,6 @@ COMMON_OUT := $(top_builddir)libc/sysdeps/linux/common CSRC := $(notdir $(wildcard $(COMMON_DIR)/*.c)) -ifeq ($(EXCLUDE_BRK),y) -CSRC := $(filter-out sbrk.c,$(CSRC)) -endif - ifneq ($(UCLIBC_HAS_LFS),y) CSRC_LFS := $(notdir $(wildcard $(COMMON_DIR)/*64.c)) CSRC := $(filter-out llseek.c $(CSRC_LFS),$(CSRC)) |
