summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/Makefile.inc
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2005-05-11 18:44:14 +0000
committerMarc Espie <espie@cvs.openbsd.org>2005-05-11 18:44:14 +0000
commit7847cf8cac3ace56d062c6d1962f2df02d25d329 (patch)
treec860a1a863e5b2697b9daf1ea627279ec05d3ced /lib/libc/stdlib/Makefile.inc
parent8d8d7a1eeeb3509c69bb27b3d97c04a887175599 (diff)
major abi changes:
* introduce the mbstate_t typedef. impacts gnu libiconv, which has already been taken care of. * Prepare for mb stuff to really exist, replace macro MB_CUR_MAX with an external variable __mb_cur_max (impacts libX11 and various ports). * use mbstate in all the mb <-> wchar functions with state. * add a stub iswctype function allowing some ports to compile. bash and gdiff are missing wcscoll, and need to be told there's no i18n until this is fixed. Discussed and matthieu, otto, millert, kettenis, deraadt. Major libc bump
Diffstat (limited to 'lib/libc/stdlib/Makefile.inc')
-rw-r--r--lib/libc/stdlib/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc
index 1d5ba5c9bd4..ba81d5ee087 100644
--- a/lib/libc/stdlib/Makefile.inc
+++ b/lib/libc/stdlib/Makefile.inc
@@ -6,7 +6,7 @@
SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \
calloc.c cfree.c exit.c ecvt.c gcvt.c getenv.c getopt_long.c \
getsubopt.c hcreate.c heapsort.c l64a.c llabs.c lsearch.c malloc.c \
- merge.c multibyte.c putenv.c qsort.c radixsort.c rand.c random.c \
+ merge.c putenv.c qsort.c radixsort.c rand.c random.c \
realpath.c setenv.c strtod.c strtol.c strtoll.c strtonum.c strtoul.c \
strtoull.c system.c \
tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \