summaryrefslogtreecommitdiff
path: root/libc/stdlib/Makefile
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2002-05-23 20:33:53 +0000
committerManuel Novoa III <mjn3@codepoet.org>2002-05-23 20:33:53 +0000
commitd730fb4d646ac74ee6bbd227411329090fb3206c (patch)
tree8f843bd6aabc8a9ea20ae708a64177e0c363f37b /libc/stdlib/Makefile
parent50566667587e92dcf900e2d53204d972b5650a38 (diff)
Multibyte and wide char conversion functions. Some work still to do, but
they're quite solid now and Erik needs them for the gcc port. Comments at the head of wchar.c.
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r--libc/stdlib/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile
index 64ae75d18..e69ec4ea8 100644
--- a/libc/stdlib/Makefile
+++ b/libc/stdlib/Makefile
@@ -35,6 +35,12 @@ ifeq ($(HAS_LONG_LONG),true)
MOBJ += llabs.o atoll.o strtoll.o strtoull.o _stdlib_strto_ll.o
endif
+ifeq ($(HAS_WCHAR),true)
+ MOBJ += mblen.o mbtowc.o wctomb.o mbstowcs.o wcstombs.o \
+ _stdlib_mb_cur_max.o
+endif
+
+
MSRC2=atexit.c
MOBJ2=atexit.o on_exit.o __exit_handler.o exit.o