summaryrefslogtreecommitdiff
path: root/libc/stdlib/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-08 19:58:20 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-08 19:58:20 +0000
commita3e03be058a9b9a2caf36c5b18f66c0fc3df3bf0 (patch)
tree2ad333bd1e56590e981eba3c54f6057cbf5758bb /libc/stdlib/Makefile
parent6c0899094d50e0d35d699594bfcd9cae4164abe2 (diff)
Add in libutil, based on Cory Visi's variant of Michael Shmulevich's libutil
port. I have reworked the code quite a bit so that the stuff that is supposed to be in libc is in libc, and I added a bunch of missing stuff so the libutil interface matches that of glibc's libutil. The only caveat is that libutil/login.c is currently a stub. -Erik
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 123841959..46276668b 100644
--- a/libc/stdlib/Makefile
+++ b/libc/stdlib/Makefile
@@ -38,7 +38,8 @@ MOBJ2=atexit.o exit.o
CSRC = abort.c getenv.c mktemp.c qsort.c realpath.c abs.c bsearch.c \
- mkstemp.c putenv.c rand.c random.c setenv.c system.c div.c ldiv.c
+ mkstemp.c putenv.c rand.c random.c setenv.c system.c div.c ldiv.c \
+ getpt.c ptsname.c grantpt.c unlockpt.c
ifeq ($(HAS_FLOATS),true)
CSRC += strtod.c
endif