glibc/wcsmbs
Ulrich Drepper 7799b7b335 Update.
1997-04-15 03:14  Ulrich Drepper  <drepper@cygnus.com>

	* wcsmbs/wcsstr.c: Add weak alias wcswcs for Unix98 compliance.

	* math/Makefile (libm-calls): Add s_sincos and s_cproj.
	* math/mathcalls.h: Add prototype for sincos.
	* sysdeps/i386/fpu/__math.h: Warn about restriction on arguments to
	inlined sin and cos function.
	Define functions new in ISO C 9X when __USE_ISOC9X is defined.
	Add optimized version of finite.
	Rewrite sincos function to handle too large arguments.
	* sysdeps/libm-i387/s_cos.S: Better code alignment.
	* sysdeps/libm-i387/s_cosl.S: Likewise.
	* sysdeps/libm-i387/s_sin.S: Likewise.
	* sysdeps/libm-i387/s_sinl.S: Likewise.
	* sysdeps/libm-i387/s_finite.S: Yet better code.
	* sysdeps/libm-i387/s_finitef.S: Likewise.
	* sysdeps/libm-i387/s_sincos.S: New file.
	* sysdeps/libm-i387/s_sincosf.S: New file.
	* sysdeps/libm-i387/s_sincosl.S: New file.
	* sysdeps/libm-ieee754/s_sincos.c: New file.
	* sysdeps/libm-ieee754/s_sincosf.c: New file.
	* sysdeps/libm-ieee754/s_sincosl.c: New file.

	* sysdeps/libm-ieee754/s_ccosh.c: Change to use sincos function.
	* sysdeps/libm-ieee754/s_ccoshf.c: Likewise.
	* sysdeps/libm-ieee754/s_ccoshl.c: Likewise.
	* sysdeps/libm-ieee754/s_cexp.c: Likewise.
	* sysdeps/libm-ieee754/s_cexpf.c: Likewise.
	* sysdeps/libm-ieee754/s_cexpl.c: Likewise.
	* sysdeps/libm-ieee754/s_csinh.c: Likewise.
	* sysdeps/libm-ieee754/s_csinhf.c: Likewise.
	* sysdeps/libm-ieee754/s_csinhl.c: Likewise.
	* sysdeps/libm-ieee754/s_ctan.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanf.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanl.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanh.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanhf.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanhl.c: Likewise.

	* sysdeps/libm-ieee754/s_cosl.c: Correct check for range.
	* sysdeps/libm-ieee754/s_sinl.c: Likewise.

	* sysdeps/libm-ieee754/s_roundtol.c: Fix typos.
	* sysdeps/libm-ieee754/s_roundtoll.c: Likewise.

	* nis/Makefile (services): Mention nisplus before compat.
	* nis/nis_call.c (__do_niscall): Change type of variable server_len
	to prevent warning.
	* nis/nss_compat/compat-grp.c (getgrent_next_file_plusgroup): Add
	cast to prevent warning.
	* nis/nss_compat/compat-pwd.c (getpwent_next_file_plususer): Likewise.
	* nis/nss_compat/compat-spwd.c (getspent_next_file_plususer): Likewise.
	* nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent): Change
	type of variable `i' to prevent warning.
	* nis/nss_nisplus/nisplus-network.c (_nss_nisplus_parse_netent):
	Likewise.
	* nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_parse_protoent):
	Likewise.
	* nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_parse_rpcent): Likewise.
	* nis/nss_nisplus/nisplus-service.c (_nss_nisplus_parse_servent):
	Likewise.

	* sysdeps/generic/Dist: Remove old math implementation files.
	* sysdeps/generic/mathimpl.h: Removed.
	* sysdeps/generic/trig.h: Removed.
	* sysdeps/generic/sincos.c: Removed.
	* sysdeps/generic/asincos.c: Removed.
	* sysdeps/generic/exp__E.c: Removed.
	* sysdeps/generic/log__L.c: Removed.

1997-04-13 17:18  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>

	* malloc/malloc.c (fREe): Small optimization.  Before returning,
	add fast check whether the heap containing top can go away.

1997-04-11 16:46  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>

	* malloc/malloc.c (mALLOc, rEALLOc, cALLOc, mEMALIGn): When
	failing to allocate a new chunk, also try the main_arena.  It may
	be that we are only running out of mmapped regions, and other
	arenas cannot be enlarged sufficiently.
	(new_heap, malloc_extend_top): Handle top_pad more consistently,
	i.e. only in new_heap().

1997-04-13 21:10  Philip Blundell  <pjb27@cl.cam.ac.uk>

	* sysdeps/posix/Makefile: Don't try to build and run mk-stdiolim
	if cross-compiling.

	* configure.in: Recognise "...linuxaout" OS names and turn off ELF.

	* configure.in: Add ARM support.
	* sysdeps/arm/Implies: New file.
	* sysdeps/arm/__longjmp.S: New file.
	* sysdeps/arm/bsd-_setjmp: New file.
	* sysdeps/arm/bsd-setjmp: New file.
	* sysdeps/arm/bytesex.h: New file.
	* sysdeps/arm/fpu_control.h: New file.
	* sysdeps/arm/jmp_buf.h: New file.
	* sysdeps/arm/setjmp.h: New file.
	* sysdeps/arm/sysdep.h: New file.
	* sysdeps/unix/arm/config.h: New file.

1997-04-14 04:03  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/libm-ieee754/s_cproj.c: New file.
	* sysdeps/libm-ieee754/s_cprojf.c: New file.
	* sysdeps/libm-ieee754/s_cprojl.c: New file.
1997-04-15 01:38:39 +00:00
..
.cvsignore Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-14 20:30:25 +00:00
Makefile update from main archive 970225 1997-02-25 05:18:05 +00:00
btowc.c update from main archive 970125 1997-01-26 05:33:35 +00:00
mbrlen.c update from main archive 970125 1997-01-26 05:33:35 +00:00
mbrtowc.c update from 961105, second try 1996-11-07 01:35:04 +00:00
mbsinit.c update from main archive 970125 1997-01-26 05:33:35 +00:00
mbsnrtowcs.c update from main archive 970125 1997-01-26 05:33:35 +00:00
mbsrtowcs.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wchar.h update from main archive 970225 1997-02-25 05:18:05 +00:00
wcpcpy.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcpncpy.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcrtomb.c update from 961105, second try 1996-11-07 01:35:04 +00:00
wcscasecmp.c update from main archive 970225 1997-02-25 05:18:05 +00:00
wcscat.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcschr.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
wcscmp.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcscoll.c Update to 2.1.x development version 1997-02-15 04:31:36 +00:00
wcscoll_l.c Update to 2.1.x development version 1997-02-15 04:31:36 +00:00
wcscpy.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcscspn.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcsdup.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcslen.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcsncase.c update from main archive 970225 1997-02-25 05:18:05 +00:00
wcsncat.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcsncmp.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
wcsncpy.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcsnrtombs.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcspbrk.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
wcsrchr.c Update from main archive 961219 1996-12-20 01:39:50 +00:00
wcsrtombs.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcsspn.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcsstr.c Update. 1997-04-15 01:38:39 +00:00
wcstod.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcstof.c Update. 1997-04-02 14:47:34 +00:00
wcstok.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcstol.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcstold.c Update. 1997-04-02 14:47:34 +00:00
wcstoll.c update from main archive 970225 1997-02-25 05:18:05 +00:00
wcstoul.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcstoull.c update from main archive 970225 1997-02-25 05:18:05 +00:00
wcswidth.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcsxfrm.c Update to 2.1.x development version 1997-02-15 04:31:36 +00:00
wcsxfrm_l.c Update to 2.1.x development version 1997-02-15 04:31:36 +00:00
wctob.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcwidth.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wcwidth.h update from main archive 970125 1997-01-26 05:33:35 +00:00
wmemchr.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wmemcmp.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wmemcpy.c Update to 2.1.x development version 1997-02-15 04:31:36 +00:00
wmemmove.c update from main archive 970125 1997-01-26 05:33:35 +00:00
wmemset.c update from main archive 970125 1997-01-26 05:33:35 +00:00