diff options
author | espie <> | 2005-05-11 18:44:13 +0000 |
---|---|---|
committer | espie <> | 2005-05-11 18:44:13 +0000 |
commit | e1d18fdea23bd39463bea3f521457e69d0d3113e (patch) | |
tree | 115f875c8ea4c9c1e399813298fca6cfe2cf9433 /src/lib | |
parent | 4795774e235e9f35017bb898b3c610d7d270ad5f (diff) | |
download | openbsd-e1d18fdea23bd39463bea3f521457e69d0d3113e.tar.gz openbsd-e1d18fdea23bd39463bea3f521457e69d0d3113e.tar.bz2 openbsd-e1d18fdea23bd39463bea3f521457e69d0d3113e.zip |
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 'src/lib')
-rw-r--r-- | src/lib/libc/stdlib/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc index 1d5ba5c9bd..ba81d5ee08 100644 --- a/src/lib/libc/stdlib/Makefile.inc +++ b/src/lib/libc/stdlib/Makefile.inc | |||
@@ -6,7 +6,7 @@ | |||
6 | SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ | 6 | SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ |
7 | calloc.c cfree.c exit.c ecvt.c gcvt.c getenv.c getopt_long.c \ | 7 | calloc.c cfree.c exit.c ecvt.c gcvt.c getenv.c getopt_long.c \ |
8 | getsubopt.c hcreate.c heapsort.c l64a.c llabs.c lsearch.c malloc.c \ | 8 | getsubopt.c hcreate.c heapsort.c l64a.c llabs.c lsearch.c malloc.c \ |
9 | merge.c multibyte.c putenv.c qsort.c radixsort.c rand.c random.c \ | 9 | merge.c putenv.c qsort.c radixsort.c rand.c random.c \ |
10 | realpath.c setenv.c strtod.c strtol.c strtoll.c strtonum.c strtoul.c \ | 10 | realpath.c setenv.c strtod.c strtol.c strtoll.c strtonum.c strtoul.c \ |
11 | strtoull.c system.c \ | 11 | strtoull.c system.c \ |
12 | tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \ | 12 | tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \ |