summaryrefslogtreecommitdiff
path: root/libc/stdlib/Makefile
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2002-09-04 20:12:44 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2002-09-04 20:12:44 +0000
commitb7f893cc42716cf360d0ac23ed7bf3d44c1251dc (patch)
tree38baaac980ac421386d1b44c9f55e341d8120cc0 /libc/stdlib/Makefile
parent4d810f5f42af19d7557af38f0ae02e70479ff0b6 (diff)
Per discussions with Erik, 'valloc.c' should be built on top of whichever
memory allocator you choose. Unfortunately, the 'malloc-930716' needs a fair amount of work before it is functional. For now, changes have been made to add the 'valloc' call and it works properly with the plain 'malloc' allocator.
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r--libc/stdlib/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile
index 91a855f6f..14ac93f51 100644
--- a/libc/stdlib/Makefile
+++ b/libc/stdlib/Makefile
@@ -46,7 +46,8 @@ CSRC = abort.c getenv.c mkdtemp.c mktemp.c realpath.c mkstemp.c mkstemp64.c \
getpt.c ptsname.c grantpt.c unlockpt.c gcvt.c drand48.c \
drand48-iter.c drand48_r.c erand48.c erand48_r.c jrand48.c \
jrand48_r.c lrand48.c lrand48_r.c mrand48.c mrand48_r.c \
- nrand48.c nrand48_r.c rand_r.c srand48.c srand48_r.c calloc.c
+ nrand48.c nrand48_r.c rand_r.c srand48.c srand48_r.c calloc.c \
+ valloc.c
ifeq ($(HAS_FLOATING_POINT),true)
CSRC += strtod.c strtof.c strtold.c
endif