Skip to content
Permalink
a1eca9f329
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
6116 lines (4800 sloc) 221 KB
1999-07-25 Jakub Jelinek <jj@ultra.linux.cz>
* elf/link.h (struct link_map): Use Elf_Symndx instead of ElfXX_Symndx.
* elf/dl-lookup.c (_dl_setup_hash): Likewise.
* elf/dl-load.c (_dl_map_object): Likewise.
* elf/do-lookup.h (do_lookup*): Likewise.
* sysdeps/generic/bits/elfclass.h: Define Elf_Symndx as uint32_t.
* sysdeps/unix/sysv/linux/alpha/bits/elfclass.h: Define Elf_symndx
as uint64_t.
* elf/elf.h: Remove Elf32_Symndx and Elf64_Symndx.
1999-07-26 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/sysv4/setsid.c: Correct types.
* sysdeps/generic/getpgrp.c: Likewise.
* sysdeps/unix/sysv/sysv4/setpgid.c: Likewise.
* sysdeps/unix/sysv/sysv4/getpgid.c: Likewise.
Patch by John Tobey <jtobey@banta-im.com>.
* sysdeps/posix/wait3.c: Help compiling in presence of
__transparent_union__. Reported by John Tobey <jtobey@banta-im.com>.
1999-07-25 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/sparc64/add_n.S: Avoid using %g2, %g3, %g7 registers
as much as possible. Declare them using .register pseudo-op if they
are still used.
* sysdeps/sparc/sparc64/lshift.S: Likewise.
* sysdeps/sparc/sparc64/memchr.S: Likewise.
* sysdeps/sparc/sparc64/memcmp.S: Likewise.
* sysdeps/sparc/sparc64/memcpy.S: Likewise.
* sysdeps/sparc/sparc64/memset.S: Likewise.
* sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
* sysdeps/sparc/sparc64/rshift.S: Likewise.
* sysdeps/sparc/sparc64/stpcpy.S: Likewise.
* sysdeps/sparc/sparc64/stpncpy.S: Likewise.
* sysdeps/sparc/sparc64/strcat.S: Likewise.
* sysdeps/sparc/sparc64/strchr.S: Likewise.
* sysdeps/sparc/sparc64/strcmp.S: Likewise.
* sysdeps/sparc/sparc64/strcpy.S: Likewise.
* sysdeps/sparc/sparc64/strcspn.S: Likewise.
* sysdeps/sparc/sparc64/strlen.S: Likewise.
* sysdeps/sparc/sparc64/strncmp.S: Likewise.
* sysdeps/sparc/sparc64/strncpy.S: Likewise.
* sysdeps/sparc/sparc64/strpbrk.S: Likewise.
* sysdeps/sparc/sparc64/strspn.S: Likewise.
* sysdeps/sparc/sparc64/sub_n.S: Likewise.
* sysdeps/sparc/sparc64/dl-machine.h: Likewise.
Optimize trampoline code for .plt4-.plt32767.
Fix trampolines for .plt32768+.
1999-07-25 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/sparc32/sparcv8/Makefile: -mv8 is deprecated, use
-mcpu=v8.
* sysdeps/sparc/sparc32/sparcv9/Makefile: Likewise.
* sysdeps/sparc/sparc64/Makefile: Make %g7 register available for
libc's private use (as assembly routine clobber it anyway).
1999-07-26 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* README.template (configurations): The crypt add-on has a new
ftp site.
* manual/install.texi (Installation): Likewise.
1999-07-26 Ulrich Drepper <drepper@cygnus.com>
* time/time.h: Add forward for struct sigevent. Unix98 maybe
requires to have a full definition but we wait for a bug report
based on the test suite.
* sysdeps/generic/clock_getres.c: New file.
* sysdeps/generic/clock_gettime.c: New file.
* sysdeps/generic/clock_settime.c: New file.
* sysdeps/generic/timer_create.c: New file.
* sysdeps/generic/timer_delete.c: New file.
* sysdeps/generic/timer_getoverr.c: New file.
* sysdeps/generic/timer_gettime.c: New file.
* sysdeps/generic/timer_settime.c: New file.
* sysdeps/generic/bits/time.h: Define __clockid_t, __timer_t,
CLOCK_REALTIME, and TIMER_ABSTIME.
* sysdeps/mach/hurd/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/alpha/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/bits/posix_opt.h: Define _POSIX_TIMERS.
* sysdeps/unix/sysv/linux/bits/siginfo.h: Define si_timer1 and
si_timer2.
* sysdeps/unix/sysv/linux/syscalls.list: Add clock and timer syscalls.
* time/Makefile (routines): Add clock_getres, clock_gettime,
clock_setres, timer_create, timer_delete, timer_getoverr,
timer_gettime, and timer_settime.
* time/time.h: Define clockid_t, timer_t, and struct itimerspec for
POSIX.1b. Add prototypes for clock and timer functions.
1999-07-26 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdprio.c (_hurd_priority_which_map): Initialize PIDS.
Fix from Marcus Brinkmann <Marcus.Brinkmann@ruhr-uni-bochum.de>.
1999-07-26 Ulrich Drepper <drepper@cygnus.com>
* stdlib/wcstombs.c: Do not use global state.
Reported by Bruno Haible <haible@ilog.fr>.
* wcsmbs/wctob.c: Avoid sign extension when returning character.
Reported by Bruno Haible <haible@ilog.fr>.
* wcsmbs/wcsrtombs.c (__wcsrtombs): When computing maximum number
of wide characters to convert do it right and don't overestimate
by multiplying with MB_CUR_MAX.
Reported by Bruno Haible <haible@ilog.fr>.
1999-07-26 Jakub Jelinek <jj@ultra.linux.jz>
* string/bits/string2.h (__strcpy_small): Avoid compile time warning.
(__stpcpy_small): Likewise.
Union has no __uc member but __c.
1999-07-26 Andreas Schwab <schwab@suse.de>
* sysdeps/m68k/dl-machine.h (RTLD_START): Call pre-init funtions.
1999-07-25 Ulrich Drepper <drepper@cygnus.com>
* libio/iofclose.c (_IO_new_fclose): Only fall back on
_IO_old_fclose if doing versioning.
* libio/iofclose.c (_IO_new_fclose): Detect new streams and handle
them appropriately.
* libio/oldiofclose.c (_IO_old_fclose): Likewise.
* misc/mntent_r.c: Allow spaces and tabs in entry names by
encoding these characters.
* misc/tst-mntent.c: Add test case for addmntent and getmntent.
* string/bits/string2.h: Fix aliasing problems.
* sysdeps/i386/i486/bits/string.h: Likewise.
* sysdeps/i386/bits/string.h: Likewise.
1998-12-28 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/powerpc/dl-machine.c: Handle shared library profiling.
* elf/rtld.c (dl_main): Don't call malloc() between
re-relocating the dynamic linker and running the application's crt0.
1999-07-21 Paul D. Smith <psmith@gnu.org>
* sysdeps/generic/glob.c: Move getlogin{,_r} prototypes below
glob.h to get __P() macro.
* posix/fnmatch.c (internal_fnmatch): Use K&R definition syntax,
not ANSI.
(__strchrnul): This won't exist outside GLIBC, so create one.
1999-07-25 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/unix/sysv/linux/sparc/bits/types.h: Always define __qaddr_t.
__ino64_t should be 32bit unsigned type on sparc32.
Define __off64_t to __quad_t instead of __int64_t.
Make __pic_pid_t unsigned on sparc32.
1999-07-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* localedata/tst-rpmatch.sh: Use "&" instead of "§" to avoid a bug
in bash 2.03.
1999-07-25 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/euc-kr.c (euckr_from_ucs4): Set cp[0] to '\0' in case
of an error. Patch by Changwoo Ryu <cwryu@debian.org>.
1999-07-24 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/ksc5601.h (ksc5601_to_ucs4): Avoid invalid memory
accesses.
* resolv/res_send.c: Add locks for res_send and res_close use.
* elf/Makefile (dl-routines): Add preinit.
* elf/Versions [ld.so] (GLIBC_2.2): Export _dl_preinit_next.
* elf/link.h (struct link_map): Add new field l_preinitcount.
* elf/dl-preinit.c: New file.
* elf/dynamic-link.h: Initialize l_preinitcount.
* sysdeps/i386/dl-machine.h (RTLD_START): Call pre-init functions.
* elf/dl-fini.c: Handle DT_FINI_ARRAY.
* elf/link.h (struct link_map): Remove l_init_running. Add l_runcount
and l_initcount.
* elf/dl-init.c: Handle DT_INIT_ARRAY.
* elf/dynamic-link.h: Change parameters. Now only get link_map
pointer. Calculate l_initcount.
* elf/link.h (struct link_map): Add l_runpath_dirs.
* elf/dynamic-link.h: If RUNPATH is given, set RPATH to NULL.
* elf/dl-load.c: Pretty print.
(decompose_rpath): Take new parameter with info from where the path
comes. Pass it the fillin_rpath.
(_dl_init_paths): Initialize l_runpath_dirs.
(_dl_map_object): Don't search using RPATHs if object has RUNPATH.
Search using RUNPATH after LD_LIBRARY_PATH.
* elf/dl-support.c: Adjust comment.
* elf/rtld.c: Adjust help message.
1999-07-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* elf/rtld.c (dl_main): Adopt to changed _dl_lookup_symbol
interface.
1999-07-23 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/generic/bits/termios.h (ONOEOT): Change value to 1<<3, to
match BSD value; previous value of 1<<8 was a typo. I bet nothing
ever used this, so I'm not going to worry about compatibility.
[__USE_GNU] (IUCLC, OLCUC): New macros.
1999-07-23 Ulrich Drepper <drepper@cygnus.com>
* include/libintl.h: Undefine N_ and _ first to avoid warnings.
* elf/elf.h: Add ET_LOOS and ET_HIOS.
Add various EM_* constants.
Add SHN_LOOS and SHN_HIOS.
Add SHT_INIT_ARRAY, SHT_FINI_ARRAY, and SHT_PREINIT_ARRAY.
Add SHF_MERGE and SHF_STRINGS.
(ElfXX_Sym): Update description of st_other field.
Add STT_COMMON.
Add ELFXX_ST_VISIBILITY and ELFXX_ST_OTHER.
Add STV_* macros.
Update comment on DT_RPATH. Add DT_RUNPATH, DT_FLAGS, DT_ENCODING,
DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ.
Add DF_ORIGIN, DF_SYMBOLIC, DF_TEXTREL, and DF_BIND_NOW.
* posix/unistd.h: Move declaration of __libc_enable_secure to...
* include/unistd.h: ...here.
* elf/dl-open.c (dl_open_worker): If DST is used in SUID program punt.
* elf/dl-deps.c (expand_dst): Likewise.
* elf/dynamic-link.h: Set DT_SYMBOLIC, DT_TEXTREL, and DT_BIND_NOW
based on DT_FLAGS value.
* elf/do-lookup.h: Remove reference_name parameter, add undef_map.
Add test for symbols marked STV_HIDDEN.
* elf/dl-lookup.c (_dl_lookup_symbol): Remove reference_name parameter,
add undef_map. Compute reference_name locally. Update call to
do_lookup.
(_dl_lookup_symbol_skip): Likewise.
(_dl_lookup_versioned_symbol): Likewise.
(_dl_lookup_versioned_symbol_skip): Likewise.
* elf/dl-libc.c: Update call to _dl_lookup_*symbol.
* elf/dl-runtime.c: Likewise.
* elf/dl-sym.c: Likewise.
* elf/dl-symbol.c: Likewise.
* elf/ldsodefs.h: Adjust prototypes.
* elf/dl-reloc.c (RESOLV): Add test for STV_PROTECTED flag set and
handle appropriately. Add comment about DT_TEXTREL.
* elf/dl-runtime.c: Likewise.
1999-07-21 Roland McGrath <roland@baalperazim.frob.com>
* elf/dl-reloc.c (_dl_reloc_bad_type): New function.
* elf/ldsodefs.h: Declare it.
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Use it
instead of assert.
(elf_machine_lazy_rel): Likewise. Take new arg MAP.
* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
(elf_machine_lazy_rel): Likewise.
* sysdeps/mips/dl-machine.h (elf_machine_rel): Likewise.
(elf_machine_lazy_rel): Likewise.
* sysdeps/mips/mips64/dl-machine.h (elf_machine_rel): Likewise.
(elf_machine_lazy_rel): Likewise.
* sysdeps/m68k/dl-machine.h (elf_machine_rela): Likewise.
(elf_machine_lazy_rel): Likewise.
* sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
(elf_machine_lazy_rel): Likewise.
* sysdeps/generic/dl-machine.h (elf_machine_rel): Likewise.
* sysdeps/arm/dl-machine.h (elf_machine_rel): Likewise.
(elf_machine_lazy_rel): Likewise.
* sysdeps/alpha/dl-machine.h (elf_machine_rela): Likewise.
(elf_machine_lazy_rel): Likewise.
* sysdeps/powerpc/dl-machine.h (elf_machine_lazy_rel): Likewise.
* sysdeps/powerpc/dl-machine.c (__process_machine_rela): Use
_dl_reloc_bad_type instead of _dl_signal_error.
* elf/do-rel.h (elf_dynamic_do_rel): Pass MAP to elf_machine_lazy_rel.
1999-07-20 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/_strerror.c: Include <libintl.h>.
1999-07-19 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurd_internal_post_signal): If a
hurd_signal_preemptor matches but its `preemptor' field is null, use
its `handler' field directly. This is to comply with behavior
documented in <hurd/sigpreempt.h>.
1999-07-21 Andreas Schwab <schwab@suse.de>
* libio/fileops.c (_IO_new_file_underflow): Set error indicator
when reading from write-only stream.
* libio/oldfileops.c (_IO_old_file_underflow): Likewise.
* libio/wfileops.c (_IO_wfile_underflow): Likewise.
1999-07-21 Andreas Schwab <schwab@suse.de>
* nss/test-netdb.c (output_hostent): Don't crash if h_aliases is
NULL.
1999-07-21 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/read.c: Do not include <hurd.h> and
<hurd/fd.h>.
* sysdeps/mach/hurd/write.c: Do not include <hurd.h> and
<hurd/fd.h>.
(__libc_write): Call __pwrite instead of __pread.
1999-07-20 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/mmap.c (__mmap): Use correct arguments in
__vm_allocate calls.
* sysdeps/mach/hurd/pread.c (__pread): Include <hurd/fd.h>. Fix typo.
* sysdeps/mach/hurd/pwrite.c (__pwrite): Include <hurd/fd.h>.
* sysdeps/mach/hurd/sysd-stdio.c (__stdio_read): Call
_hurd_fd_read with new OFFSET argument set to -1.
(__stdio_write): Call _hurd_fd_write with new OFFSET argument set
to -1.
1999-07-17 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdexec.c (_hurd_exec): Prune trailing null ports from the
descriptor table sent in the RPC.
1999-07-20 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* time/strptime.c [!_LIBC]: Fix __mon_day size. Reported by
bill@taniwha.org [PR libc/1211].
1999-07-19 Andreas Schwab <schwab@suse.de>
* libio/Makefile (routines): Add fwprintf.
PowerPC has own version of w_sqrt.c and w_sqrtf.c.
* math/w_sqrt.c: Moved to ...
* sysdeps/generic/w_sqrt.c: ... here.
* math/w_sqrtf.c: Moved to ...
* sysdeps/generic/w_sqrtf.c: ... here.
* Make-dist (generic-dirs): New variable.
(try-sysdeps, +sysdep-names): Use it.
* extra-lib.mk (all-$(lib)-routines): New variable. Use it
instead of $(lib)-routines.
* elf/Makefile (distribute): Add dl-cache.h.
* db2/Makefile (distribute): Add all new files.
* iconvdata/Makefile (distribute): Don't distribute CVS
directory.
* math/Makefile (distribute): Remove machine/endian.h, add
math_ldbl.h.
* stdio-common/Makefile (distribute): Add _itowa.h.
* sysdeps/generic/Dist: Remove make_siglist.c, add siglist.h.
* sysdeps/gnu/Dist: Add eval.c
* sysdeps/gnu/Makefile (libdl-sysdep_routines) [$(subdir) =
dlfcn]: Add to this instead of libdl-routines.
* sysdeps/ieee754/ldbl-128/Dist: New file.
* sysdeps/mach/hurd/Dist: Add siglist.h
* sysdeps/unix/sysv/linux/Dist: Add kernel-features.h.
1999-07-18 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/sparc/Dist: Add ldd-rewrite.sed.
* inet/Makefile (routines): Add getipnodebyad and freehostent.
* inet/Versions [GLIBC_2.2] (libc): Add getipnodebyad and freehostent.
* inet/freehostent.c: New file.
* inet/getipnodebyad.c: New file.
* resolv/netdb.h: Add prototypes for getipnodebyaddr, freehostent,
and getipnodebyname. The latter comes soon.
* nss/digits_dots.c: Fail if IPv6 is found and IPv4 is requested.
Add support for getipnode* functions.
* nss/digits_dots.c: Don't use __set_h_errno, assign to *h_errnop.
Set h_aliases to NULL and not to a pointer to an array with a NULL
pointer following XNS 5.2.
* posix/sched.h: Remove internal interfaces.
* include/sched.h: Add internal interfaces.
* nss/getXXbyYY.c: Provide variable h_errnop to help shared code.
* nss/digits_dots.c: Set h_errnop if memory allcoation failed.
* inet/gethstbyad_r.c (PREPROCESS): Test for unspecified IPv6 address
and return an error in this case.
* nss/getXXbyYY_r.c: Allow PREPROCESS be defined and use it if
available.
1999-07-18 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* nscd/nscd_proto.h (__nscd_gethostbyaddr_r): Follow change from
1999-07-17 and adjust len parameter.
* nscd/nscd_gethst_r.c (__nscd_gethostbyaddr_r): Likewise.
* nscd/gethstbyad_r.c (ADD_PARAMS): Likewise.
* manual/socket.texi (Host Names): Likewise.
* nis/nss_nis/nis-hosts.c (_nss_nis_gethostbyaddr_r): Likewise.
* nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_gethostbyaddr_r):
Likewise.
* resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
* resolv/gethnamaddr.c (gethostbyaddr): Likewise.
(ht_gethostbyaddr): Likewise.
(_gethtbyaddr): Likewise.
1999-07-17 Ulrich Drepper <drepper@cygnus.com>
* resolv/netdb.h: Adjust parameters of gethostbyaddr and
gethostbyaddr_r.
* include/netdb.h: Likewise.
* inet/gethstbyad.c: Correct type of len parameter.
* inet/gethstbyad_r.c: Likewise.
* sysdeps/unix/sysv/linux/arm/Versions: Undo last change.
1999-07-17 Zack Weinberg <zack@rabi.columbia.edu>
* include/libc-symbol.h: Clean up definitions of weak_alias,
strong_alias, symbol_version, etc. etc.
* posix/getopt.h: Use ctype.h to get features.h included, and don't
include it at all if __GNU_LIBRARY__ is already defined.
1999-07-17 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/bug1.c: Include <stdlib.h> to get prototype for free.
* malloc/malloc.c: Add missing chunk of patch from 1999-07-04.
* sysdeps/unix/sysv/linux/bits/time.h (timeval): Use __suseconds_t
type for tv_usec element.
* sysdeps/unix/sysv/linux/alpha/bits/time.h: Likewise
* sysdeps/unix/sysv/linux/bits/types.h: Define __suseconds_t.
* sysdeps/generic/bits/time.h: Likewise.
* sysdeps/mach/hurd/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/alpha/bits/types.h: Likewise.
* sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/types.h: Likewise.
* sysdeps/unix/sysv/sysv4/solaris2/bits/types.h: Likewise.
* sysdeps/generic/bits/types.h: Likewise.
* posix/sys/types.h: Define suseconds_t for X/Open.
1999-07-15 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/bug1.c: Avoid memory leak.
* sysdeps/i386/fpu/e_pow.S: Use addl instead of pop/pop to keep
program deterministic.
* sysdeps/i386/fpu/e_powf.S: Likewise.
* sysdeps/i386/fpu/e_powl.S: Likewise.
1999-07-15 Jakub Jelinek <jj@ultra.linux.cz>
* math/Makefile: Add t_sincosl and k_sincosl support routines.
* math/math_private.h (__kernel_sincosl): New declaration.
* sysdeps/generic/t_sincosl.c: New file.
* sysdeps/generic/k_sincosl.c: New file.
* sysdeps/ieee754/ldbl-128/k_cosl.c: New file.
* sysdeps/ieee754/ldbl-128/k_sinl.c: New file.
* sysdeps/ieee754/ldbl-128/k_sincosl.c: New file.
* sysdeps/ieee754/ldbl-128/t_sincosl.c: New file.
* sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: New file.
* sysdeps/ieee754/ldbl-128/s_sincosl.c (__sincosl): Use
__kernel_sincosl.
* sysdeps/ieee754/ldbl-128/math_ldbl.h (GET_LDOUBLE_LSW64): New
definition.
1999-07-15 Ulrich Drepper <drepper@cygnus.com>
* posix/unistd.h: Use __PMT for exit.
1999-07-15 Philip Blundell <pb@nexus.co.uk>
* sysdeps/unix/sysv/linux/arm/Versions (_inb, _inw, _inl, _outb,
_outw, _outl): Added to GLIBC_2.1.2.
1999-07-15 Ulrich Drepper <drepper@cygnus.com>
* posix/fnmatch.h: Use __name instead of __string in prototype to
allow use outside glibc.
1999-07-14 Ulrich Drepper <drepper@cygnus.com>
* time/tst-strptime.c (main): Add one more test case. Produce
output even when result is ok.
* time/strptime.c (get_number): Handle number parsing more
consistent with strftime. Only parse a given number of digits.
(get_alt_number): Fix implementation. Was broken.
(strptime_internal): Add third parameter to get_number and
get_alt_number calls.
1999-07-13 Jakub Jelinek <jj@ultra.linux.cz>
* elf/ldd.bash.in: Add support for multiple dynamic linkers.
* sysdeps/unix/sysv/linux/sparc/ldd-rewrite.sed: On sparc*linux*,
try both 32bit and 64bit dynamic linker.
* sysdeps/unix/sysv/linux/configure.in: Apply sparc ldd-rewrite
script on all sparc targets.
1999-07-13 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/unix/sysv/linux/shmat.c (shmat): Avoid casting a pointer
to int.
1999-07-13 Andreas Schwab <schwab@suse.de>
* elf/dl-runtime.c (fixup, profile_fixup): Call alloca to prevent
inlining. Fixes PR libc/1198.
1999-07-14 Andreas Schwab <schwab@suse.de>
* Makerules (common-generated): Don't prepend $(common-objpfx).
1999-07-12 Jakub Jelinek <jj@ultra.linux.cz>
* stdio-common/printf_fp.c (__printf_fp): Adjust for IEEE quad
as _FPIO_CONST_OFFSET does not cover all bits after binary dot.
* sysdeps/generic/printf_fphex.c (__printf_fphex): Support IEEE
quad by moving long double support into PRINT_FPHEX_LONG_DOUBLE
macro.
* sysdeps/alpha/Implies: Imply ieee754/flt-32 and ieee754/dbl-64
instead of ieee754.
* sysdeps/arm/Implies: Likewise.
* sysdeps/i386/Implies: Imply ieee754/flt-32, ieee754/dbl-64, and
ieee754/ldbl-96 instead of ieee754.
* sysdeps/i386/i686/Implies: Remove implication for libm-i387/i686.
* sysdeps/generic/e_atanhl.c: New file.
* sysdeps/generic/e_coshl.c: New file.
* sysdeps/generic/e_sinhl.c: New file.
* sysdeps/generic/e_gammal_r.c: New file.
* sysdeps/generic/e_hypotl.c: New file.
* sysdeps/generic/s_cbrtl.c: New file.
* sysdeps/generic/s_asinhl.c: New file.
* sysdeps/generic/s_tanhl.c: New file.
* sysdeps/generic/w_expl.c: New file.
* sysdeps/i960/Implies: Imply ieee754/flt-32 and ieee754/dbl-64
instead of ieee754.
* sysdeps/m68k/Implies: Imply ieee754/flt-32, ieee754/dbl-64, and
ieee754/ldbl-96 instead of ieee754.
* sysdeps/m68k/strtold.c: Include ldbl-96 version of strtold.
* sysdeps/m68k/printf_fphex.c: Include ldbl-96 version of
printf_fphex.
* sysdeps/mips/Implies: Imply ieee754/flt-32 and ieee754/dbl-64
instead of ieee754.
* sysdeps/mips/mips64/Implies: Likewise.
* sysdeps/powerpc/Implies: Likewise.
* sysdeps/sparc/Implies: Remove.
* sysdeps/sparc/sparc32/Implies: Imply ieee754/flt-32 and
ieee754/dbl-64.
* sysdeps/sparc/sparc64/Implies: Imply ieee754/flt-32, ieee754/dbl-64,
and ieee754/ldbl-128.
* sysdeps/sparc/bits/wordsize.h: Remove.
* sysdeps/sparc/fpu/bits/mathinline.h: New file.
* sysdeps/sparc/fpu/bits/mathdef.h: __NO_LONG_DOUBLE_MATH
only for sparc32.
* sysdeps/sparc/sparc32/fpu/bits/huge_val.h: New file.
* sysdeps/sparc/sparc32/bits/wordsize.h: New file.
* sysdeps/sparc/sparc64/fpu/bits/huge_val.h: New file.
* sysdeps/sparc/sparc64/bits/wordsize.h: New file.
* sysdeps/sparc/sparc64/Makefile: Add IEEE quad long double
support.
* sysdeps/sparc/sparc64/addmul_1.S: Fix miscalculation
of carries. Optimize.
* sysdeps/libm-ieee754/e_exp10.c: Moved to ...
* sysdeps/generic/e_exp10.c: ...here.
* sysdeps/libm-ieee754/e_exp10f.c: Moved to ...
* sysdeps/generic/e_exp10f.c: ...here.
* sysdeps/libm-ieee754/e_exp10l.c: Moved to ...
* sysdeps/generic/e_exp10l.c: ...here.
* sysdeps/libm-ieee754/e_scalb.c: Moved to ...
* sysdeps/generic/e_scalb.c: ...here.
* sysdeps/libm-ieee754/e_scalbf.c: Moved to ...
* sysdeps/generic/e_scalbf.c: ...here.
* sysdeps/libm-ieee754/e_scalbl.c: Moved to ...
* sysdeps/generic/e_scalbl.c: ...here.
* sysdeps/libm-ieee754/s_cacos.c: Moved to ...
* sysdeps/generic/s_cacos.c: ...here.
* sysdeps/libm-ieee754/s_cacosf.c: Moved to ...
* sysdeps/generic/s_cacosf.c: ...here.
* sysdeps/libm-ieee754/s_cacosh.c: Moved to ...
* sysdeps/generic/s_cacosh.c: ...here.
* sysdeps/libm-ieee754/s_cacoshf.c: Moved to ...
* sysdeps/generic/s_cacoshf.c: ...here.
* sysdeps/libm-ieee754/s_cacoshl.c: Moved to ...
* sysdeps/generic/s_cacoshl.c: ...here.
* sysdeps/libm-ieee754/s_cacosl.c: Moved to ...
* sysdeps/generic/s_cacosl.c: ...here.
* sysdeps/libm-ieee754/s_casin.c: Moved to ...
* sysdeps/generic/s_casin.c: ...here.
* sysdeps/libm-ieee754/s_casinf.c: Moved to ...
* sysdeps/generic/s_casinf.c: ...here.
* sysdeps/libm-ieee754/s_casinh.c: Moved to ...
* sysdeps/generic/s_casinh.c: ...here.
* sysdeps/libm-ieee754/s_casinhf.c: Moved to ...
* sysdeps/generic/s_casinhf.c: ...here.
* sysdeps/libm-ieee754/s_casinhl.c: Moved to ...
* sysdeps/generic/s_casinhl.c: ...here.
* sysdeps/libm-ieee754/s_casinl.c: Moved to ...
* sysdeps/generic/s_casinl.c: ...here.
* sysdeps/libm-ieee754/s_catan.c: Moved to ...
* sysdeps/generic/s_catan.c: ...here.
* sysdeps/libm-ieee754/s_catanf.c: Moved to ...
* sysdeps/generic/s_catanf.c: ...here.
* sysdeps/libm-ieee754/s_catanh.c: Moved to ...
* sysdeps/generic/s_catanh.c: ...here.
* sysdeps/libm-ieee754/s_catanhf.c: Moved to ...
* sysdeps/generic/s_catanhf.c: ...here.
* sysdeps/libm-ieee754/s_catanhl.c: Moved to ...
* sysdeps/generic/s_catanhl.c: ...here.
* sysdeps/libm-ieee754/s_catanl.c: Moved to ...
* sysdeps/generic/s_catanl.c: ...here.
* sysdeps/libm-ieee754/s_ccos.c: Moved to ...
* sysdeps/generic/s_ccos.c: ...here.
* sysdeps/libm-ieee754/s_ccosf.c: Moved to ...
* sysdeps/generic/s_ccosf.c: ...here.
* sysdeps/libm-ieee754/s_ccosh.c: Moved to ...
* sysdeps/generic/s_ccosh.c: ...here.
* sysdeps/libm-ieee754/s_ccoshf.c: Moved to ...
* sysdeps/generic/s_ccoshf.c: ...here.
* sysdeps/libm-ieee754/s_ccoshl.c: Moved to ...
* sysdeps/generic/s_ccoshl.c: ...here.
* sysdeps/libm-ieee754/s_ccosl.c: Moved to ...
* sysdeps/generic/s_ccosl.c: ...here.
* sysdeps/libm-ieee754/s_cexp.c: Moved to ...
* sysdeps/generic/s_cexp.c: ...here.
* sysdeps/libm-ieee754/s_cexpf.c: Moved to ...
* sysdeps/generic/s_cexpf.c: ...here.
* sysdeps/libm-ieee754/s_cexpl.c: Moved to ...
* sysdeps/generic/s_cexpl.c: ...here.
* sysdeps/libm-ieee754/s_clog.c: Moved to ...
* sysdeps/generic/s_clog.c: ...here.
* sysdeps/libm-ieee754/s_clog10.c: Moved to ...
* sysdeps/generic/s_clog10.c: ...here.
* sysdeps/libm-ieee754/s_clog10f.c: Moved to ...
* sysdeps/generic/s_clog10f.c: ...here.
* sysdeps/libm-ieee754/s_clog10l.c: Moved to ...
* sysdeps/generic/s_clog10l.c: ...here.
* sysdeps/libm-ieee754/s_clogf.c: Moved to ...
* sysdeps/generic/s_clogf.c: ...here.
* sysdeps/libm-ieee754/s_clogl.c: Moved to ...
* sysdeps/generic/s_clogl.c: ...here.
* sysdeps/libm-ieee754/s_cpow.c: Moved to ...
* sysdeps/generic/s_cpow.c: ...here.
* sysdeps/libm-ieee754/s_cpowf.c: Moved to ...
* sysdeps/generic/s_cpowf.c: ...here.
* sysdeps/libm-ieee754/s_cpowl.c: Moved to ...
* sysdeps/generic/s_cpowl.c: ...here.
* sysdeps/libm-ieee754/s_cproj.c: Moved to ...
* sysdeps/generic/s_cproj.c: ...here.
* sysdeps/libm-ieee754/s_cprojf.c: Moved to ...
* sysdeps/generic/s_cprojf.c: ...here.
* sysdeps/libm-ieee754/s_cprojl.c: Moved to ...
* sysdeps/generic/s_cprojl.c: ...here.
* sysdeps/libm-ieee754/s_csin.c: Moved to ...
* sysdeps/generic/s_csin.c: ...here.
* sysdeps/libm-ieee754/s_csinf.c: Moved to ...
* sysdeps/generic/s_csinf.c: ...here.
* sysdeps/libm-ieee754/s_csinh.c: Moved to ...
* sysdeps/generic/s_csinh.c: ...here.
* sysdeps/libm-ieee754/s_csinhf.c: Moved to ...
* sysdeps/generic/s_csinhf.c: ...here.
* sysdeps/libm-ieee754/s_csinhl.c: Moved to ...
* sysdeps/generic/s_csinhl.c: ...here.
* sysdeps/libm-ieee754/s_csinl.c: Moved to ...
* sysdeps/generic/s_csinl.c: ...here.
* sysdeps/libm-ieee754/s_csqrt.c: Moved to ...
* sysdeps/generic/s_csqrt.c: ...here.
* sysdeps/libm-ieee754/s_csqrtf.c: Moved to ...
* sysdeps/generic/s_csqrtf.c: ...here.
* sysdeps/libm-ieee754/s_csqrtl.c: Moved to ...
* sysdeps/generic/s_csqrtl.c: ...here.
* sysdeps/libm-ieee754/s_ctan.c: Moved to ...
* sysdeps/generic/s_ctan.c: ...here.
* sysdeps/libm-ieee754/s_ctanf.c: Moved to ...
* sysdeps/generic/s_ctanf.c: ...here.
* sysdeps/libm-ieee754/s_ctanh.c: Moved to ...
* sysdeps/generic/s_ctanh.c: ...here.
* sysdeps/libm-ieee754/s_ctanhf.c: Moved to ...
* sysdeps/generic/s_ctanhf.c: ...here.
* sysdeps/libm-ieee754/s_ctanhl.c: Moved to ...
* sysdeps/generic/s_ctanhl.c: ...here.
* sysdeps/libm-ieee754/s_ctanl.c: Moved to ...
* sysdeps/generic/s_ctanl.c: ...here.
* sysdeps/libm-ieee754/s_fdim.c: Moved to ...
* sysdeps/generic/s_fdim.c: ...here.
* sysdeps/libm-ieee754/s_fdimf.c: Moved to ...
* sysdeps/generic/s_fdimf.c: ...here.
* sysdeps/libm-ieee754/s_fdiml.c: Moved to ...
* sysdeps/generic/s_fdiml.c: ...here.
* sysdeps/libm-ieee754/s_fma.c: Moved to ...
* sysdeps/generic/s_fma.c: ...here.
* sysdeps/libm-ieee754/s_fmaf.c: Moved to ...
* sysdeps/generic/s_fmaf.c: ...here.
* sysdeps/libm-ieee754/s_fmal.c: Moved to ...
* sysdeps/generic/s_fmal.c: ...here.
* sysdeps/libm-ieee754/s_fmax.c: Moved to ...
* sysdeps/generic/s_fmax.c: ...here.
* sysdeps/libm-ieee754/s_fmaxf.c: Moved to ...
* sysdeps/generic/s_fmaxf.c: ...here.
* sysdeps/libm-ieee754/s_fmaxl.c: Moved to ...
* sysdeps/generic/s_fmaxl.c: ...here.
* sysdeps/libm-ieee754/s_fmin.c: Moved to ...
* sysdeps/generic/s_fmin.c: ...here.
* sysdeps/libm-ieee754/s_fminf.c: Moved to ...
* sysdeps/generic/s_fminf.c: ...here.
* sysdeps/libm-ieee754/s_fminl.c: Moved to ...
* sysdeps/generic/s_fminl.c: ...here.
* sysdeps/libm-ieee754/s_ldexp.c: Moved to ...
* sysdeps/generic/s_ldexp.c: ...here.
* sysdeps/libm-ieee754/s_ldexpf.c: Moved to ...
* sysdeps/generic/s_ldexpf.c: ...here.
* sysdeps/libm-ieee754/s_ldexpl.c: Moved to ...
* sysdeps/generic/s_ldexpl.c: ...here.
* sysdeps/libm-ieee754/s_nan.c: Moved to ...
* sysdeps/generic/s_nan.c: ...here.
* sysdeps/libm-ieee754/s_nanf.c: Moved to ...
* sysdeps/generic/s_nanf.c: ...here.
* sysdeps/libm-ieee754/s_nanl.c: Moved to ...
* sysdeps/generic/s_nanl.c: ...here.
* sysdeps/libm-ieee754/s_significand.c: Moved to ...
* sysdeps/generic/s_significand.c: ...here.
* sysdeps/libm-ieee754/s_significandf.c: Moved to ...
* sysdeps/generic/s_significandf.c: ...here.
* sysdeps/libm-ieee754/s_significandl.c: Moved to ...
* sysdeps/generic/s_significandl.c: ...here.
Avoid conversion from int to double and then to long double.
* sysdeps/libm-ieee754/w_acos.c: Moved to ...
* math/w_acos.c: ...here.
* sysdeps/libm-ieee754/w_acosf.c: Moved to ...
* math/w_acosf.c: ...here.
* sysdeps/libm-ieee754/w_acosh.c: Moved to ...
* math/w_acosh.c: ...here.
* sysdeps/libm-ieee754/w_acoshf.c: Moved to ...
* math/w_acoshf.c: ...here.
* sysdeps/libm-ieee754/w_acoshl.c: Moved to ...
* math/w_acoshl.c: ...here.
* sysdeps/libm-ieee754/w_acosl.c: Moved to ...
* math/w_acosl.c: ...here.
* sysdeps/libm-ieee754/w_asin.c: Moved to ...
* math/w_asin.c: ...here.
* sysdeps/libm-ieee754/w_asinf.c: Moved to ...
* math/w_asinf.c: ...here.
* sysdeps/libm-ieee754/w_asinl.c: Moved to ...
* math/w_asinl.c: ...here.
* sysdeps/libm-ieee754/w_atan2.c: Moved to ...
* math/w_atan2.c: ...here.
* sysdeps/libm-ieee754/w_atan2f.c: Moved to ...
* math/w_atan2f.c: ...here.
* sysdeps/libm-ieee754/w_atan2l.c: Moved to ...
* math/w_atan2l.c: ...here.
* sysdeps/libm-ieee754/w_atanh.c: Moved to ...
* math/w_atanh.c: ...here.
* sysdeps/libm-ieee754/w_atanhf.c: Moved to ...
* math/w_atanhf.c: ...here.
* sysdeps/libm-ieee754/w_atanhl.c: Moved to ...
* math/w_atanhl.c: ...here.
* sysdeps/libm-ieee754/w_cosh.c: Moved to ...
* math/w_cosh.c: ...here.
* sysdeps/libm-ieee754/w_coshf.c: Moved to ...
* math/w_coshf.c: ...here.
* sysdeps/libm-ieee754/w_coshl.c: Moved to ...
* math/w_coshl.c: ...here.
* sysdeps/libm-ieee754/w_drem.c: Moved to ...
* math/w_drem.c: ...here.
* sysdeps/libm-ieee754/w_dremf.c: Moved to ...
* math/w_dremf.c: ...here.
* sysdeps/libm-ieee754/w_dreml.c: Moved to ...
* math/w_dreml.c: ...here.
* sysdeps/libm-ieee754/w_exp10.c: Moved to ...
* math/w_exp10.c: ...here.
* sysdeps/libm-ieee754/w_exp10f.c: Moved to ...
* math/w_exp10f.c: ...here.
* sysdeps/libm-ieee754/w_exp10l.c: Moved to ...
* math/w_exp10l.c: ...here.
* sysdeps/libm-ieee754/w_exp2.c: Moved to ...
* math/w_exp2.c: ...here.
* sysdeps/libm-ieee754/w_exp2f.c: Moved to ...
* math/w_exp2f.c: ...here.
* sysdeps/libm-ieee754/w_exp2l.c: Moved to ...
* math/w_exp2l.c: ...here.
* sysdeps/libm-ieee754/w_fmod.c: Moved to ...
* math/w_fmod.c: ...here.
* sysdeps/libm-ieee754/w_fmodf.c: Moved to ...
* math/w_fmodf.c: ...here.
* sysdeps/libm-ieee754/w_fmodl.c: Moved to ...
* math/w_fmodl.c: ...here.
* sysdeps/libm-ieee754/w_hypot.c: Moved to ...
* math/w_hypot.c: ...here.
* sysdeps/libm-ieee754/w_hypotf.c: Moved to ...
* math/w_hypotf.c: ...here.
* sysdeps/libm-ieee754/w_hypotl.c: Moved to ...
* math/w_hypotl.c: ...here.
* sysdeps/libm-ieee754/w_j0.c: Moved to ...
* math/w_j0.c: ...here.
* sysdeps/libm-ieee754/w_j0f.c: Moved to ...
* math/w_j0f.c: ...here.
* sysdeps/libm-ieee754/w_j0l.c: Moved to ...
* math/w_j0l.c: ...here.
* sysdeps/libm-ieee754/w_j1.c: Moved to ...
* math/w_j1.c: ...here.
* sysdeps/libm-ieee754/w_j1f.c: Moved to ...
* math/w_j1f.c: ...here.
* sysdeps/libm-ieee754/w_j1l.c: Moved to ...
* math/w_j1l.c: ...here.
* sysdeps/libm-ieee754/w_jn.c: Moved to ...
* math/w_jn.c: ...here.
* sysdeps/libm-ieee754/w_jnf.c: Moved to ...
* math/w_jnf.c: ...here.
* sysdeps/libm-ieee754/w_jnl.c: Moved to ...
* math/w_jnl.c: ...here.
* sysdeps/libm-ieee754/w_lgamma.c: Moved to ...
* math/w_lgamma.c: ...here.
* sysdeps/libm-ieee754/w_lgamma_r.c: Moved to ...
* math/w_lgamma_r.c: ...here.
* sysdeps/libm-ieee754/w_lgammaf.c: Moved to ...
* math/w_lgammaf.c: ...here.
* sysdeps/libm-ieee754/w_lgammaf_r.c: Moved to ...
* math/w_lgammaf_r.c: ...here.
* sysdeps/libm-ieee754/w_lgammal.c: Moved to ...
* math/w_lgammal.c: ...here.
* sysdeps/libm-ieee754/w_lgammal_r.c: Moved to ...
* math/w_lgammal_r.c: ...here.
* sysdeps/libm-ieee754/w_log.c: Moved to ...
* math/w_log.c: ...here.
* sysdeps/libm-ieee754/w_log10.c: Moved to ...
* math/w_log10.c: ...here.
* sysdeps/libm-ieee754/w_log10f.c: Moved to ...
* math/w_log10f.c: ...here.
* sysdeps/libm-ieee754/w_log10l.c: Moved to ...
* math/w_log10l.c: ...here.
* sysdeps/libm-ieee754/w_logf.c: Moved to ...
* math/w_logf.c: ...here.
* sysdeps/libm-ieee754/w_logl.c: Moved to ...
* math/w_logl.c: ...here.
* sysdeps/libm-ieee754/w_pow.c: Moved to ...
* math/w_pow.c: ...here.
* sysdeps/libm-ieee754/w_powf.c: Moved to ...
* math/w_powf.c: ...here.
* sysdeps/libm-ieee754/w_powl.c: Moved to ...
* math/w_powl.c: ...here.
* sysdeps/libm-ieee754/w_remainder.c: Moved to ...
* math/w_remainder.c: ...here.
* sysdeps/libm-ieee754/w_remainderf.c: Moved to ...
* math/w_remainderf.c: ...here.
* sysdeps/libm-ieee754/w_remainderl.c: Moved to ...
* math/w_remainderl.c: ...here.
* sysdeps/libm-ieee754/w_scalb.c: Moved to ...
* math/w_scalb.c: ...here.
* sysdeps/libm-ieee754/w_scalbf.c: Moved to ...
* math/w_scalbf.c: ...here.
* sysdeps/libm-ieee754/w_scalbl.c: Moved to ...
* math/w_scalbl.c: ...here.
* sysdeps/libm-ieee754/w_sinh.c: Moved to ...
* math/w_sinh.c: ...here.
* sysdeps/libm-ieee754/w_sinhf.c: Moved to ...
* math/w_sinhf.c: ...here.
* sysdeps/libm-ieee754/w_sinhl.c: Moved to ...
* math/w_sinhl.c: ...here.
* sysdeps/libm-ieee754/w_sqrt.c: Moved to ...
* math/w_sqrt.c: ...here.
* sysdeps/libm-ieee754/w_sqrtf.c: Moved to ...
* math/w_sqrtf.c: ...here.
* sysdeps/libm-ieee754/w_sqrtl.c: Moved to ...
* math/w_sqrtl.c: ...here.
* sysdeps/libm-ieee754/w_tgamma.c: Moved to ...
* math/w_tgamma.c: ...here.
* sysdeps/libm-ieee754/w_tgammaf.c: Moved to ...
* math/w_tgammaf.c: ...here.
* sysdeps/libm-ieee754/w_tgammal.c: Moved to ...
* math/w_tgammal.c: ...here.
* sysdeps/libm-i387/e_acos.S: Moved to ...
* sysdeps/i386/fpu/e_acos.S: ...here.
* sysdeps/libm-i387/e_acosf.S: Moved to ...
* sysdeps/i386/fpu/e_acosf.S: ...here.
* sysdeps/libm-i387/e_acosh.S: Moved to ...
* sysdeps/i386/fpu/e_acosh.S: ...here.
* sysdeps/libm-i387/e_acoshf.S: Moved to ...
* sysdeps/i386/fpu/e_acoshf.S: ...here.
* sysdeps/libm-i387/e_acoshl.S: Moved to ...
* sysdeps/i386/fpu/e_acoshl.S: ...here.
* sysdeps/libm-i387/e_acosl.S: Moved to ...
* sysdeps/i386/fpu/e_acosl.S: ...here.
* sysdeps/libm-i387/e_asin.S: Moved to ...
* sysdeps/i386/fpu/e_asin.S: ...here.
* sysdeps/libm-i387/e_asinf.S: Moved to ...
* sysdeps/i386/fpu/e_asinf.S: ...here.
* sysdeps/libm-i387/e_asinl.S: Moved to ...
* sysdeps/i386/fpu/e_asinl.S: ...here.
* sysdeps/libm-i387/e_atan2.S: Moved to ...
* sysdeps/i386/fpu/e_atan2.S: ...here.
* sysdeps/libm-i387/e_atan2f.S: Moved to ...
* sysdeps/i386/fpu/e_atan2f.S: ...here.
* sysdeps/libm-i387/e_atan2l.S: Moved to ...
* sysdeps/i386/fpu/e_atan2l.S: ...here.
* sysdeps/libm-i387/e_atanh.S: Moved to ...
* sysdeps/i386/fpu/e_atanh.S: ...here.
* sysdeps/libm-i387/e_atanhf.S: Moved to ...
* sysdeps/i386/fpu/e_atanhf.S: ...here.
* sysdeps/libm-i387/e_atanhl.S: Moved to ...
* sysdeps/i386/fpu/e_atanhl.S: ...here.
* sysdeps/libm-i387/e_exp.S: Moved to ...
* sysdeps/i386/fpu/e_exp.S: ...here.
* sysdeps/libm-i387/e_exp10.S: Moved to ...
* sysdeps/i386/fpu/e_exp10.S: ...here.
* sysdeps/libm-i387/e_exp10f.S: Moved to ...
* sysdeps/i386/fpu/e_exp10f.S: ...here.
* sysdeps/libm-i387/e_exp10l.S: Moved to ...
* sysdeps/i386/fpu/e_exp10l.S: ...here.
* sysdeps/libm-i387/e_expf.S: Moved to ...
* sysdeps/i386/fpu/e_expf.S: ...here.
* sysdeps/libm-i387/e_expl.S: Moved to ...
* sysdeps/i386/fpu/e_expl.S: ...here.
* sysdeps/libm-i387/e_fmod.S: Moved to ...
* sysdeps/i386/fpu/e_fmod.S: ...here.
* sysdeps/libm-i387/e_fmodf.S: Moved to ...
* sysdeps/i386/fpu/e_fmodf.S: ...here.
* sysdeps/libm-i387/e_fmodl.S: Moved to ...
* sysdeps/i386/fpu/e_fmodl.S: ...here.
* sysdeps/libm-i387/e_hypot.S: Moved to ...
* sysdeps/i386/fpu/e_hypot.S: ...here.
* sysdeps/libm-i387/e_hypotf.S: Moved to ...
* sysdeps/i386/fpu/e_hypotf.S: ...here.
* sysdeps/libm-i387/e_log.S: Moved to ...
* sysdeps/i386/fpu/e_log.S: ...here.
* sysdeps/libm-i387/e_log10.S: Moved to ...
* sysdeps/i386/fpu/e_log10.S: ...here.
* sysdeps/libm-i387/e_log10f.S: Moved to ...
* sysdeps/i386/fpu/e_log10f.S: ...here.
* sysdeps/libm-i387/e_log10l.S: Moved to ...
* sysdeps/i386/fpu/e_log10l.S: ...here.
* sysdeps/libm-i387/e_logf.S: Moved to ...
* sysdeps/i386/fpu/e_logf.S: ...here.
* sysdeps/libm-i387/e_logl.S: Moved to ...
* sysdeps/i386/fpu/e_logl.S: ...here.
* sysdeps/libm-i387/e_pow.S: Moved to ...
* sysdeps/i386/fpu/e_pow.S: ...here.
* sysdeps/libm-i387/e_powf.S: Moved to ...
* sysdeps/i386/fpu/e_powf.S: ...here.
* sysdeps/libm-i387/e_powl.S: Moved to ...
* sysdeps/i386/fpu/e_powl.S: ...here.
* sysdeps/libm-i387/e_rem_pio2l.c: Moved to ...
* sysdeps/i386/fpu/e_rem_pio2l.c: ...here.
* sysdeps/libm-i387/e_remainder.S: Moved to ...
* sysdeps/i386/fpu/e_remainder.S: ...here.
* sysdeps/libm-i387/e_remainderf.S: Moved to ...
* sysdeps/i386/fpu/e_remainderf.S: ...here.
* sysdeps/libm-i387/e_remainderl.S: Moved to ...
* sysdeps/i386/fpu/e_remainderl.S: ...here.
* sysdeps/libm-i387/e_scalb.S: Moved to ...
* sysdeps/i386/fpu/e_scalb.S: ...here.
* sysdeps/libm-i387/e_scalbf.S: Moved to ...
* sysdeps/i386/fpu/e_scalbf.S: ...here.
* sysdeps/libm-i387/e_scalbl.S: Moved to ...
* sysdeps/i386/fpu/e_scalbl.S: ...here.
* sysdeps/libm-i387/e_sqrt.S: Moved to ...
* sysdeps/i386/fpu/e_sqrt.S: ...here.
* sysdeps/libm-i387/e_sqrtf.S: Moved to ...
* sysdeps/i386/fpu/e_sqrtf.S: ...here.
* sysdeps/libm-i387/e_sqrtl.S: Moved to ...
* sysdeps/i386/fpu/e_sqrtl.S: ...here.
* sysdeps/libm-i387/k_rem_pio2l.c: Moved to ...
* sysdeps/i386/fpu/k_rem_pio2l.c: ...here.
* sysdeps/libm-i387/s_asinh.S: Moved to ...
* sysdeps/i386/fpu/s_asinh.S: ...here.
* sysdeps/libm-i387/s_asinhf.S: Moved to ...
* sysdeps/i386/fpu/s_asinhf.S: ...here.
* sysdeps/libm-i387/s_asinhl.S: Moved to ...
* sysdeps/i386/fpu/s_asinhl.S: ...here.
* sysdeps/libm-i387/s_atan.S: Moved to ...
* sysdeps/i386/fpu/s_atan.S: ...here.
* sysdeps/libm-i387/s_atanf.S: Moved to ...
* sysdeps/i386/fpu/s_atanf.S: ...here.
* sysdeps/libm-i387/s_atanl.S: Moved to ...
* sysdeps/i386/fpu/s_atanl.S: ...here.
* sysdeps/libm-i387/s_cbrt.S: Moved to ...
* sysdeps/i386/fpu/s_cbrt.S: ...here.
* sysdeps/libm-i387/s_cbrtf.S: Moved to ...
* sysdeps/i386/fpu/s_cbrtf.S: ...here.
* sysdeps/libm-i387/s_cbrtl.S: Moved to ...
* sysdeps/i386/fpu/s_cbrtl.S: ...here.
* sysdeps/libm-i387/s_ceil.S: Moved to ...
* sysdeps/i386/fpu/s_ceil.S: ...here.
* sysdeps/libm-i387/s_ceilf.S: Moved to ...
* sysdeps/i386/fpu/s_ceilf.S: ...here.
* sysdeps/libm-i387/s_ceill.S: Moved to ...
* sysdeps/i386/fpu/s_ceill.S: ...here.
* sysdeps/libm-i387/s_cexp.S: Moved to ...
* sysdeps/i386/fpu/s_cexp.S: ...here.
* sysdeps/libm-i387/s_cexpf.S: Moved to ...
* sysdeps/i386/fpu/s_cexpf.S: ...here.
* sysdeps/libm-i387/s_cexpl.S: Moved to ...
* sysdeps/i386/fpu/s_cexpl.S: ...here.
* sysdeps/libm-i387/s_copysign.S: Moved to ...
* sysdeps/i386/fpu/s_copysign.S: ...here.
* sysdeps/libm-i387/s_copysignf.S: Moved to ...
* sysdeps/i386/fpu/s_copysignf.S: ...here.
* sysdeps/libm-i387/s_copysignl.S: Moved to ...
* sysdeps/i386/fpu/s_copysignl.S: ...here.
* sysdeps/libm-i387/s_cos.S: Moved to ...
* sysdeps/i386/fpu/s_cos.S: ...here.
* sysdeps/libm-i387/s_cosf.S: Moved to ...
* sysdeps/i386/fpu/s_cosf.S: ...here.
* sysdeps/libm-i387/s_cosl.S: Moved to ...
* sysdeps/i386/fpu/s_cosl.S: ...here.
* sysdeps/libm-i387/s_exp2.S: Moved to ...
* sysdeps/i386/fpu/s_exp2.S: ...here.
* sysdeps/libm-i387/s_exp2f.S: Moved to ...
* sysdeps/i386/fpu/s_exp2f.S: ...here.
* sysdeps/libm-i387/s_exp2l.S: Moved to ...
* sysdeps/i386/fpu/s_exp2l.S: ...here.
* sysdeps/libm-i387/s_expm1.S: Moved to ...
* sysdeps/i386/fpu/s_expm1.S: ...here.
* sysdeps/libm-i387/s_expm1f.S: Moved to ...
* sysdeps/i386/fpu/s_expm1f.S: ...here.
* sysdeps/libm-i387/s_expm1l.S: Moved to ...
* sysdeps/i386/fpu/s_expm1l.S: ...here.
* sysdeps/libm-i387/s_fdim.S: Moved to ...
* sysdeps/i386/fpu/s_fdim.S: ...here.
* sysdeps/libm-i387/s_fdimf.S: Moved to ...
* sysdeps/i386/fpu/s_fdimf.S: ...here.
* sysdeps/libm-i387/s_fdiml.S: Moved to ...
* sysdeps/i386/fpu/s_fdiml.S: ...here.
* sysdeps/libm-i387/s_finite.S: Moved to ...
* sysdeps/i386/fpu/s_finite.S: ...here.
* sysdeps/libm-i387/s_finitef.S: Moved to ...
* sysdeps/i386/fpu/s_finitef.S: ...here.
* sysdeps/libm-i387/s_finitel.S: Moved to ...
* sysdeps/i386/fpu/s_finitel.S: ...here.
* sysdeps/libm-i387/s_floor.S: Moved to ...
* sysdeps/i386/fpu/s_floor.S: ...here.
* sysdeps/libm-i387/s_floorf.S: Moved to ...
* sysdeps/i386/fpu/s_floorf.S: ...here.
* sysdeps/libm-i387/s_floorl.S: Moved to ...
* sysdeps/i386/fpu/s_floorl.S: ...here.
* sysdeps/libm-i387/s_fma.S: Moved to ...
* sysdeps/i386/fpu/s_fma.S: ...here.
* sysdeps/libm-i387/s_fmaf.S: Moved to ...
* sysdeps/i386/fpu/s_fmaf.S: ...here.
* sysdeps/libm-i387/s_fmal.S: Moved to ...
* sysdeps/i386/fpu/s_fmal.S: ...here.
* sysdeps/libm-i387/s_fmax.S: Moved to ...
* sysdeps/i386/fpu/s_fmax.S: ...here.
* sysdeps/libm-i387/s_fmaxf.S: Moved to ...
* sysdeps/i386/fpu/s_fmaxf.S: ...here.
* sysdeps/libm-i387/s_fmaxl.S: Moved to ...
* sysdeps/i386/fpu/s_fmaxl.S: ...here.
* sysdeps/libm-i387/s_fmin.S: Moved to ...
* sysdeps/i386/fpu/s_fmin.S: ...here.
* sysdeps/libm-i387/s_fminf.S: Moved to ...
* sysdeps/i386/fpu/s_fminf.S: ...here.
* sysdeps/libm-i387/s_fminl.S: Moved to ...
* sysdeps/i386/fpu/s_fminl.S: ...here.
* sysdeps/libm-i387/s_frexp.S: Moved to ...
* sysdeps/i386/fpu/s_frexp.S: ...here.
* sysdeps/libm-i387/s_frexpf.S: Moved to ...
* sysdeps/i386/fpu/s_frexpf.S: ...here.
* sysdeps/libm-i387/s_frexpl.S: Moved to ...
* sysdeps/i386/fpu/s_frexpl.S: ...here.
* sysdeps/libm-i387/s_ilogb.S: Moved to ...
* sysdeps/i386/fpu/s_ilogb.S: ...here.
* sysdeps/libm-i387/s_ilogbf.S: Moved to ...
* sysdeps/i386/fpu/s_ilogbf.S: ...here.
* sysdeps/libm-i387/s_ilogbl.S: Moved to ...
* sysdeps/i386/fpu/s_ilogbl.S: ...here.
* sysdeps/libm-i387/s_llrint.S: Moved to ...
* sysdeps/i386/fpu/s_llrint.S: ...here.
* sysdeps/libm-i387/s_llrintf.S: Moved to ...
* sysdeps/i386/fpu/s_llrintf.S: ...here.
* sysdeps/libm-i387/s_llrintl.S: Moved to ...
* sysdeps/i386/fpu/s_llrintl.S: ...here.
* sysdeps/libm-i387/s_log1p.S: Moved to ...
* sysdeps/i386/fpu/s_log1p.S: ...here.
* sysdeps/libm-i387/s_log1pf.S: Moved to ...
* sysdeps/i386/fpu/s_log1pf.S: ...here.
* sysdeps/libm-i387/s_log1pl.S: Moved to ...
* sysdeps/i386/fpu/s_log1pl.S: ...here.
* sysdeps/libm-i387/s_log2.S: Moved to ...
* sysdeps/i386/fpu/s_log2.S: ...here.
* sysdeps/libm-i387/s_log2f.S: Moved to ...
* sysdeps/i386/fpu/s_log2f.S: ...here.
* sysdeps/libm-i387/s_log2l.S: Moved to ...
* sysdeps/i386/fpu/s_log2l.S: ...here.
* sysdeps/libm-i387/s_logb.S: Moved to ...
* sysdeps/i386/fpu/s_logb.S: ...here.
* sysdeps/libm-i387/s_logbf.S: Moved to ...
* sysdeps/i386/fpu/s_logbf.S: ...here.
* sysdeps/libm-i387/s_logbl.S: Moved to ...
* sysdeps/i386/fpu/s_logbl.S: ...here.
* sysdeps/libm-i387/s_lrint.S: Moved to ...
* sysdeps/i386/fpu/s_lrint.S: ...here.
* sysdeps/libm-i387/s_lrintf.S: Moved to ...
* sysdeps/i386/fpu/s_lrintf.S: ...here.
* sysdeps/libm-i387/s_lrintl.S: Moved to ...
* sysdeps/i386/fpu/s_lrintl.S: ...here.
* sysdeps/libm-i387/s_nearbyint.S: Moved to ...
* sysdeps/i386/fpu/s_nearbyint.S: ...here.
* sysdeps/libm-i387/s_nearbyintf.S: Moved to ...
* sysdeps/i386/fpu/s_nearbyintf.S: ...here.
* sysdeps/libm-i387/s_nearbyintl.S: Moved to ...
* sysdeps/i386/fpu/s_nearbyintl.S: ...here.
* sysdeps/libm-i387/s_remquo.S: Moved to ...
* sysdeps/i386/fpu/s_remquo.S: ...here.
* sysdeps/libm-i387/s_remquof.S: Moved to ...
* sysdeps/i386/fpu/s_remquof.S: ...here.
* sysdeps/libm-i387/s_remquol.S: Moved to ...
* sysdeps/i386/fpu/s_remquol.S: ...here.
* sysdeps/libm-i387/s_rint.S: Moved to ...
* sysdeps/i386/fpu/s_rint.S: ...here.
* sysdeps/libm-i387/s_rintf.S: Moved to ...
* sysdeps/i386/fpu/s_rintf.S: ...here.
* sysdeps/libm-i387/s_rintl.S: Moved to ...
* sysdeps/i386/fpu/s_rintl.S: ...here.
* sysdeps/libm-i387/s_scalbn.S: Moved to ...
* sysdeps/i386/fpu/s_scalbn.S: ...here.
* sysdeps/libm-i387/s_scalbnf.S: Moved to ...
* sysdeps/i386/fpu/s_scalbnf.S: ...here.
* sysdeps/libm-i387/s_scalbnl.S: Moved to ...
* sysdeps/i386/fpu/s_scalbnl.S: ...here.
* sysdeps/libm-i387/s_significand.S: Moved to ...
* sysdeps/i386/fpu/s_significand.S: ...here.
* sysdeps/libm-i387/s_significandf.S: Moved to ...
* sysdeps/i386/fpu/s_significandf.S: ...here.
* sysdeps/libm-i387/s_significandl.S: Moved to ...
* sysdeps/i386/fpu/s_significandl.S: ...here.
* sysdeps/libm-i387/s_sin.S: Moved to ...
* sysdeps/i386/fpu/s_sin.S: ...here.
* sysdeps/libm-i387/s_sincos.S: Moved to ...
* sysdeps/i386/fpu/s_sincos.S: ...here.
* sysdeps/libm-i387/s_sincosf.S: Moved to ...
* sysdeps/i386/fpu/s_sincosf.S: ...here.
* sysdeps/libm-i387/s_sincosl.S: Moved to ...
* sysdeps/i386/fpu/s_sincosl.S: ...here.
* sysdeps/libm-i387/s_sinf.S: Moved to ...
* sysdeps/i386/fpu/s_sinf.S: ...here.
* sysdeps/libm-i387/s_sinl.S: Moved to ...
* sysdeps/i386/fpu/s_sinl.S: ...here.
* sysdeps/libm-i387/s_tan.S: Moved to ...
* sysdeps/i386/fpu/s_tan.S: ...here.
* sysdeps/libm-i387/s_tanf.S: Moved to ...
* sysdeps/i386/fpu/s_tanf.S: ...here.
* sysdeps/libm-i387/s_tanl.S: Moved to ...
* sysdeps/i386/fpu/s_tanl.S: ...here.
* sysdeps/libm-i387/s_trunc.S: Moved to ...
* sysdeps/i386/fpu/s_trunc.S: ...here.
* sysdeps/libm-i387/s_truncf.S: Moved to ...
* sysdeps/i386/fpu/s_truncf.S: ...here.
* sysdeps/libm-i387/s_truncl.S: Moved to ...
* sysdeps/i386/fpu/s_truncl.S: ...here.
* sysdeps/libm-ieee754/k_standard.c: Moved to ...
* sysdeps/ieee754/k_standard.c: ...here.
* sysdeps/libm-ieee754/s_lib_version.c: Moved to ...
* sysdeps/ieee754/s_lib_version.c: ...here.
* sysdeps/libm-ieee754/s_matherr.c: Moved to ...
* sysdeps/ieee754/s_matherr.c: ...here.
* sysdeps/libm-ieee754/s_signgam.c: Moved to ...
* sysdeps/ieee754/s_signgam.c: ...here.
* sysdeps/ieee754/dbl2mpn.c: Moved to ...
* sysdeps/ieee754/dbl-64/dbl2mpn.c: ...here.
* sysdeps/ieee754/mpn2dbl.c: Moved to ...
* sysdeps/ieee754/dbl-64/mpn2dbl.c: ...here.
* sysdeps/libm-ieee754/e_acos.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_acos.c: ...here.
* sysdeps/libm-ieee754/e_acosh.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_acosh.c: ...here.
* sysdeps/libm-ieee754/e_asin.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_asin.c: ...here.
* sysdeps/libm-ieee754/e_atan2.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_atan2.c: ...here.
* sysdeps/libm-ieee754/e_atanh.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_atanh.c: ...here.
* sysdeps/libm-ieee754/e_cosh.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_cosh.c: ...here.
* sysdeps/libm-ieee754/e_exp.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_exp.c: ...here.
* sysdeps/libm-ieee754/e_fmod.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_fmod.c: ...here.
* sysdeps/libm-ieee754/e_gamma_r.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_gamma_r.c: ...here.
* sysdeps/libm-ieee754/e_hypot.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_hypot.c: ...here.
* sysdeps/libm-ieee754/e_j0.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_j0.c: ...here.
* sysdeps/libm-ieee754/e_j1.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_j1.c: ...here.
* sysdeps/libm-ieee754/e_jn.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_jn.c: ...here.
* sysdeps/libm-ieee754/e_lgamma_r.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_lgamma_r.c: ...here.
* sysdeps/libm-ieee754/e_log.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_log.c: ...here.
* sysdeps/libm-ieee754/e_log10.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_log10.c: ...here.
* sysdeps/libm-ieee754/e_pow.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_pow.c: ...here.
* sysdeps/libm-ieee754/e_remainder.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_remainder.c: ...here.
* sysdeps/libm-ieee754/e_sinh.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_sinh.c: ...here.
* sysdeps/libm-ieee754/e_sqrt.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_sqrt.c: ...here.
* sysdeps/libm-ieee754/k_cos.c: Moved to ...
* sysdeps/ieee754/dbl-64/k_cos.c: ...here.
* sysdeps/libm-ieee754/k_sin.c: Moved to ...
* sysdeps/ieee754/dbl-64/k_sin.c: ...here.
* sysdeps/libm-ieee754/k_tan.c: Moved to ...
* sysdeps/ieee754/dbl-64/k_tan.c: ...here.
* sysdeps/libm-ieee754/s_asinh.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_asinh.c: ...here.
* sysdeps/libm-ieee754/s_atan.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_atan.c: ...here.
* sysdeps/libm-ieee754/s_cbrt.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_cbrt.c: ...here.
* sysdeps/libm-ieee754/s_ceil.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_ceil.c: ...here.
* sysdeps/libm-ieee754/s_copysign.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_copysign.c: ...here.
* sysdeps/libm-ieee754/s_cos.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_cos.c: ...here.
* sysdeps/libm-ieee754/s_erf.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_erf.c: ...here.
* sysdeps/libm-ieee754/s_exp2.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_exp2.c: ...here.
* sysdeps/libm-ieee754/s_expm1.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_expm1.c: ...here.
* sysdeps/libm-ieee754/s_fabs.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_fabs.c: ...here.
* sysdeps/libm-ieee754/s_finite.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_finite.c: ...here.
* sysdeps/libm-ieee754/s_floor.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_floor.c: ...here.
* sysdeps/libm-ieee754/s_fpclassify.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_fpclassify.c: ...here.
* sysdeps/libm-ieee754/s_frexp.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_frexp.c: ...here.
* sysdeps/libm-ieee754/s_ilogb.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_ilogb.c: ...here.
* sysdeps/libm-ieee754/s_isinf.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_isinf.c: ...here.
* sysdeps/libm-ieee754/s_isnan.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_isnan.c: ...here.
(__isnan): Comment above function says it returns 0 or 1, but it
used to return 0 or -1.
* sysdeps/libm-ieee754/s_llrint.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_llrint.c: ...here.
* sysdeps/libm-ieee754/s_llround.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_llround.c: ...here.
* sysdeps/libm-ieee754/s_log1p.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_log1p.c: ...here.
* sysdeps/libm-ieee754/s_log2.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_log2.c: ...here.
* sysdeps/libm-ieee754/s_logb.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_logb.c: ...here.
* sysdeps/libm-ieee754/s_lrint.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_lrint.c: ...here.
* sysdeps/libm-ieee754/s_lround.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_lround.c: ...here.
* sysdeps/libm-ieee754/s_modf.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_modf.c: ...here.
* sysdeps/libm-ieee754/s_nearbyint.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_nearbyint.c: ...here.
* sysdeps/libm-ieee754/s_nextafter.c: Moved to ...
* sysdeps/generic/s_nextafter.c: ...here.
Add __nexttoward and nexttoward aliases if NO_LONG_DOUBLE.
* sysdeps/libm-ieee754/s_remquo.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_remquo.c: ...here.
* sysdeps/libm-ieee754/s_rint.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_rint.c: ...here.
* sysdeps/libm-ieee754/s_round.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_round.c: ...here.
* sysdeps/libm-ieee754/s_scalbn.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_scalbn.c: ...here.
* sysdeps/libm-ieee754/s_signbit.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_signbit.c: ...here.
* sysdeps/libm-ieee754/s_sin.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_sin.c: ...here.
* sysdeps/libm-ieee754/s_sincos.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_sincos.c: ...here.
* sysdeps/libm-ieee754/s_tan.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_tan.c: ...here.
* sysdeps/libm-ieee754/s_tanh.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_tanh.c: ...here.
* sysdeps/libm-ieee754/s_trunc.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_trunc.c: ...here.
* sysdeps/libm-ieee754/t_exp2.h: Moved to ...
* sysdeps/ieee754/dbl-64/t_exp2.h: ...here.
* sysdeps/libm-ieee754/w_exp.c: Moved to ...
* sysdeps/ieee754/dbl-64/w_exp.c: ...here.
* sysdeps/ieee754/mpn2flt.c: Moved to ...
* sysdeps/ieee754/flt-32/mpn2flt.c: ...here.
* sysdeps/libm-ieee754/e_acosf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_acosf.c: ...here.
* sysdeps/libm-ieee754/e_acoshf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_acoshf.c: ...here.
* sysdeps/libm-ieee754/e_asinf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_asinf.c: ...here.
* sysdeps/libm-ieee754/e_atan2f.c: Moved to ...
* sysdeps/ieee754/flt-32/e_atan2f.c: ...here.
* sysdeps/libm-ieee754/e_atanhf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_atanhf.c: ...here.
* sysdeps/libm-ieee754/e_coshf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_coshf.c: ...here.
* sysdeps/libm-ieee754/e_expf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_expf.c: ...here.
* sysdeps/libm-ieee754/e_fmodf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_fmodf.c: ...here.
* sysdeps/libm-ieee754/e_gammaf_r.c: Moved to ...
* sysdeps/ieee754/flt-32/e_gammaf_r.c: ...here.
* sysdeps/libm-ieee754/e_hypotf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_hypotf.c: ...here.
* sysdeps/libm-ieee754/e_j0f.c: Moved to ...
* sysdeps/ieee754/flt-32/e_j0f.c: ...here.
* sysdeps/libm-ieee754/e_j1f.c: Moved to ...
* sysdeps/ieee754/flt-32/e_j1f.c: ...here.
* sysdeps/libm-ieee754/e_jnf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_jnf.c: ...here.
* sysdeps/libm-ieee754/e_lgammaf_r.c: Moved to ...
* sysdeps/ieee754/flt-32/e_lgammaf_r.c: ...here.
* sysdeps/libm-ieee754/e_log10f.c: Moved to ...
* sysdeps/ieee754/flt-32/e_log10f.c: ...here.
* sysdeps/libm-ieee754/e_logf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_logf.c: ...here.
* sysdeps/libm-ieee754/e_powf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_powf.c: ...here.
* sysdeps/libm-ieee754/e_remainderf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_remainderf.c: ...here.
* sysdeps/libm-ieee754/e_sinhf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_sinhf.c: ...here.
* sysdeps/libm-ieee754/e_sqrtf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_sqrtf.c: ...here.
* sysdeps/libm-ieee754/k_cosf.c: Moved to ...
* sysdeps/ieee754/flt-32/k_cosf.c: ...here.
* sysdeps/libm-ieee754/k_sinf.c: Moved to ...
* sysdeps/ieee754/flt-32/k_sinf.c: ...here.
* sysdeps/libm-ieee754/k_tanf.c: Moved to ...
* sysdeps/ieee754/flt-32/k_tanf.c: ...here.
* sysdeps/libm-ieee754/s_asinhf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_asinhf.c: ...here.
* sysdeps/libm-ieee754/s_atanf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_atanf.c: ...here.
* sysdeps/libm-ieee754/s_cbrtf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_cbrtf.c: ...here.
* sysdeps/libm-ieee754/s_ceilf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_ceilf.c: ...here.
* sysdeps/libm-ieee754/s_copysignf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_copysignf.c: ...here.
* sysdeps/libm-ieee754/s_cosf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_cosf.c: ...here.
* sysdeps/libm-ieee754/s_erff.c: Moved to ...
* sysdeps/ieee754/flt-32/s_erff.c: ...here.
* sysdeps/libm-ieee754/s_exp2f.c: Moved to ...
* sysdeps/ieee754/flt-32/s_exp2f.c: ...here.
* sysdeps/libm-ieee754/s_expm1f.c: Moved to ...
* sysdeps/ieee754/flt-32/s_expm1f.c: ...here.
* sysdeps/libm-ieee754/s_fabsf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_fabsf.c: ...here.
* sysdeps/libm-ieee754/s_finitef.c: Moved to ...
* sysdeps/ieee754/flt-32/s_finitef.c: ...here.
* sysdeps/libm-ieee754/s_floorf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_floorf.c: ...here.
* sysdeps/libm-ieee754/s_fpclassifyf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_fpclassifyf.c: ...here.
* sysdeps/libm-ieee754/s_frexpf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_frexpf.c: ...here.
* sysdeps/libm-ieee754/s_ilogbf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_ilogbf.c: ...here.
* sysdeps/libm-ieee754/s_isinff.c: Moved to ...
* sysdeps/ieee754/flt-32/s_isinff.c: ...here.
* sysdeps/libm-ieee754/s_isnanf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_isnanf.c: ...here.
* sysdeps/libm-ieee754/s_llrintf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_llrintf.c: ...here.
* sysdeps/libm-ieee754/s_llroundf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_llroundf.c: ...here.
* sysdeps/libm-ieee754/s_log1pf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_log1pf.c: ...here.
* sysdeps/libm-ieee754/s_log2f.c: Moved to ...
* sysdeps/ieee754/flt-32/s_log2f.c: ...here.
* sysdeps/libm-ieee754/s_logbf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_logbf.c: ...here.
* sysdeps/libm-ieee754/s_lrintf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_lrintf.c: ...here.
* sysdeps/libm-ieee754/s_lroundf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_lroundf.c: ...here.
* sysdeps/libm-ieee754/s_modff.c: Moved to ...
* sysdeps/ieee754/flt-32/s_modff.c: ...here.
* sysdeps/libm-ieee754/s_nearbyintf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_nearbyintf.c: ...here.
* sysdeps/libm-ieee754/s_nextafterf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_nextafterf.c: ...here.
* sysdeps/libm-ieee754/s_remquof.c: Moved to ...
* sysdeps/ieee754/flt-32/s_remquof.c: ...here.
* sysdeps/libm-ieee754/s_rintf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_rintf.c: ...here.
* sysdeps/libm-ieee754/s_roundf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_roundf.c: ...here.
* sysdeps/libm-ieee754/s_scalbnf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_scalbnf.c: ...here.
* sysdeps/libm-ieee754/s_signbitf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_signbitf.c: ...here.
* sysdeps/libm-ieee754/s_sincosf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_sincosf.c: ...here.
* sysdeps/libm-ieee754/s_sinf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_sinf.c: ...here.
* sysdeps/libm-ieee754/s_tanf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_tanf.c: ...here.
* sysdeps/libm-ieee754/s_tanhf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_tanhf.c: ...here.
* sysdeps/libm-ieee754/s_truncf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_truncf.c: ...here.
* sysdeps/libm-ieee754/t_exp2f.h: Moved to ...
* sysdeps/ieee754/flt-32/t_exp2f.h: ...here.
* sysdeps/libm-ieee754/w_expf.c: Moved to ...
* sysdeps/ieee754/flt-32/w_expf.c: ...here.
* sysdeps/libm-ieee754/e_acoshl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_acoshl.c: ...here.
* sysdeps/libm-ieee754/e_atan2l.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_atan2l.c: ...here.
* sysdeps/libm-ieee754/e_atanhl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_atanhl.c: ...here.
* sysdeps/libm-ieee754/e_coshl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_coshl.c: ...here.
* sysdeps/libm-ieee754/e_gammal_r.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_gammal_r.c: ...here.
* sysdeps/libm-ieee754/e_hypotl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_hypotl.c: ...here.
* sysdeps/libm-ieee754/e_remainderl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_remainderl.c: ...here.
* sysdeps/libm-ieee754/e_sinhl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_sinhl.c: ...here.
* sysdeps/libm-ieee754/s_asinhl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_asinhl.c: ...here.
* sysdeps/libm-ieee754/s_cbrtl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_cbrtl.c: ...here.
* sysdeps/libm-ieee754/s_ceill.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_ceill.c: ...here.
* sysdeps/libm-ieee754/s_copysignl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_copysignl.c: ...here.
* sysdeps/libm-ieee754/s_cosl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_cosl.c: ...here.
* sysdeps/libm-ieee754/s_fabsl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_fabsl.c: ...here.
* sysdeps/libm-ieee754/s_finitel.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_finitel.c: ...here.
* sysdeps/libm-ieee754/s_floorl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_floorl.c: ...here.
* sysdeps/libm-ieee754/s_fpclassifyl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: ...here.
* sysdeps/libm-ieee754/s_frexpl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_frexpl.c: ...here.
* sysdeps/libm-ieee754/s_ilogbl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_ilogbl.c: ...here.
* sysdeps/libm-ieee754/s_llrintl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_llrintl.c: ...here.
* sysdeps/libm-ieee754/s_llroundl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_llroundl.c: ...here.
* sysdeps/libm-ieee754/s_logbl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_logbl.c: ...here.
* sysdeps/libm-ieee754/s_lrintl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_lrintl.c: ...here.
* sysdeps/libm-ieee754/s_lroundl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_lroundl.c: ...here.
* sysdeps/libm-ieee754/s_modfl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_modfl.c: ...here.
(__modfl): IEEE 854 long doubles should use SET_LDOUBLE_WORDS, not
INSERT_WORDS.
* sysdeps/libm-ieee754/s_nearbyintl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_nearbyintl.c: ...here.
(__nearbyintl): Fix for exponents 2^30.
* sysdeps/libm-ieee754/s_remquol.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_remquol.c: ...here.
* sysdeps/libm-ieee754/s_rintl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_rintl.c: ...here.
(__rintl): Fix for exponents 2^30.
* sysdeps/libm-ieee754/s_roundl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_roundl.c: ...here.
* sysdeps/libm-ieee754/s_scalbnl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_scalbnl.c: ...here.
(__scalbnl): Fix exponent for subnormal result.
* sysdeps/libm-ieee754/s_signbitl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_signbitl.c: ...here.
* sysdeps/libm-ieee754/s_sincosl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_sincosl.c: ...here.
* sysdeps/libm-ieee754/s_sinl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_sinl.c: ...here.
* sysdeps/libm-ieee754/s_tanhl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_tanhl.c: ...here.
* sysdeps/libm-ieee754/s_tanl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_tanl.c: ...here.
* sysdeps/libm-ieee754/s_truncl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_truncl.c: ...here.
* sysdeps/libm-ieee754/w_expl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/w_expl.c: ...here.
* sysdeps/libm-i387/i686/s_fminl.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fminl.S: ...here.
* sysdeps/libm-i387/s_scalblnf.c: Moved to ...
* sysdeps/i386/fpu/s_scalblnf.c: ...here.
* sysdeps/libm-ieee754/s_scalblnf.c: Moved to ...
* sysdeps/ieee754/flt-32/s_scalblnf.c: ...here.
* sysdeps/libm-i387/i686/s_fdiml.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fdiml.S: ...here.
* sysdeps/libm-i387/e_rem_pio2f.c: Moved to ...
* sysdeps/i386/fpu/e_rem_pio2f.c: ...here.
* sysdeps/libm-ieee754/e_rem_pio2f.c: Moved to ...
* sysdeps/ieee754/flt-32/e_rem_pio2f.c: ...here.
* sysdeps/libm-i387/i686/s_fmin.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fmin.S: ...here.
* sysdeps/libm-i387/k_rem_pio2.c: Moved to ...
* sysdeps/i386/fpu/k_rem_pio2.c: ...here.
* sysdeps/libm-ieee754/k_rem_pio2.c: Moved to ...
* sysdeps/ieee754/dbl-64/k_rem_pio2.c: ...here.
* sysdeps/libm-i387/k_rem_pio2f.c: Moved to ...
* sysdeps/i386/fpu/k_rem_pio2f.c: ...here.
* sysdeps/libm-ieee754/k_rem_pio2f.c: Moved to ...
* sysdeps/ieee754/flt-32/k_rem_pio2f.c: ...here.
* sysdeps/libm-i387/s_scalbln.c: Moved to ...
* sysdeps/i386/fpu/s_scalbln.c: ...here.
* sysdeps/libm-ieee754/s_scalbln.c: Moved to ...
* sysdeps/ieee754/dbl-64/s_scalbln.c: ...here.
* sysdeps/libm-i387/i686/s_fmax.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fmax.S: ...here.
* sysdeps/libm-i387/t_exp.c: Moved to ...
* sysdeps/i386/fpu/t_exp.c: ...here.
* sysdeps/libm-ieee754/t_exp.c: Moved to ...
* sysdeps/ieee754/dbl-64/t_exp.c: ...here.
* sysdeps/libm-i387/e_rem_pio2.c: Moved to ...
* sysdeps/i386/fpu/e_rem_pio2.c: ...here.
* sysdeps/libm-ieee754/e_rem_pio2.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_rem_pio2.c: ...here.
* sysdeps/libm-i387/s_isinfl.c: Moved to ...
* sysdeps/i386/fpu/s_isinfl.c: ...here.
* sysdeps/libm-ieee754/s_isinfl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_isinfl.c: ...here.
* sysdeps/libm-i387/s_scalblnl.c: Moved to ...
* sysdeps/i386/fpu/s_scalblnl.c: ...here.
* sysdeps/libm-ieee754/s_scalblnl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_scalblnl.c: ...here.
Fix exponent for subnormal result.
* sysdeps/libm-ieee754/s_nexttowardl.c: Moved to ...
* sysdeps/generic/s_nexttowardl.c: ...here.
* sysdeps/libm-i387/i686/s_fmaxf.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fmaxf.S: ...here.
* sysdeps/libm-i387/s_isnanl.c: Moved to ...
* sysdeps/i386/fpu/s_isnanl.c: ...here.
* sysdeps/libm-ieee754/s_isnanl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_isnanl.c: ...here.
Comment above function says it returns 0 or 1, but it used to return
0 or -1.
* sysdeps/libm-i387/i686/s_fminf.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fminf.S: ...here.
* sysdeps/libm-i387/i686/s_fdim.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fdim.S: ...here.
* sysdeps/libm-i387/i686/s_fdimf.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fdimf.S: ...here.
* sysdeps/libm-i387/i686/s_fmaxl.S: Moved to ...
* sysdeps/i386/i686/fpu/s_fmaxl.S: ...here.
* sysdeps/libm-ieee754/s_nexttoward.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_nexttoward.c: ...here.
Cannot compare exponents with different biases without adjusting.
* sysdeps/libm-ieee754/s_nexttowardf.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_nexttowardf.c: ...here.
Cannot compare exponents with different biases without adjusting.
* sysdeps/libm-i387/s_nextafterl.c: Moved to ...
* sysdeps/i386/fpu/s_nextafterl.c: ...here.
* sysdeps/libm-ieee754/s_nextafterl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/s_nextafterl.c: ...here.
* sysdeps/ieee754/ldbl2mpn.c: Moved to ...
* sysdeps/ieee754/ldbl-96/ldbl2mpn.c: ...here.
Removed __NO_LONG_DOUBLE_MATH ifndef around the whole file.
* sysdeps/ieee754/mpn2ldbl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/mpn2ldbl.c: ...here.
Removed __NO_LONG_DOUBLE_MATH ifndef around the whole file.
* sysdeps/libm-ieee754/Dist: Split into ...
* sysdeps/ieee754/dbl-64/Dist: ...this and ...
* sysdeps/ieee754/flt-32/Dist: ...this file.
* sysdeps/ieee754/dbl-64/s_nexttoward.c: New file.
* sysdeps/ieee754/dbl-64/mpn2ldbl.c: New file.
* sysdeps/ieee754/ldbl-96/math_ldbl.h: New file.
* sysdeps/ieee754/ldbl-96/strtold.c: New file.
* sysdeps/ieee754/ldbl-96/printf_fphex.c: New file.
* sysdeps/ieee754/ldbl-128/s_sinl.c: New file.
* sysdeps/ieee754/ldbl-128/s_ceill.c: New file.
* sysdeps/ieee754/ldbl-128/e_remainderl.c: New file.
* sysdeps/ieee754/ldbl-128/ieee754.h: New file.
* sysdeps/ieee754/ldbl-128/e_atan2l.c: New file.
* sysdeps/ieee754/ldbl-128/s_finitel.c: New file.
* sysdeps/ieee754/ldbl-128/s_roundl.c: New file.
* sysdeps/ieee754/ldbl-128/s_llrintl.c: New file.
* sysdeps/ieee754/ldbl-128/e_gammal_r.c: New file.
* sysdeps/ieee754/ldbl-128/s_llroundl.c: New file.
* sysdeps/ieee754/ldbl-128/s_sincosl.c: New file.
* sysdeps/ieee754/ldbl-128/s_cosl.c: New file.
* sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: New file.
* sysdeps/ieee754/ldbl-128/s_ilogbl.c: New file.
* sysdeps/ieee754/ldbl-128/s_floorl.c: New file.
* sysdeps/ieee754/ldbl-128/s_logbl.c: New file.
* sysdeps/ieee754/ldbl-128/s_scalbnl.c: New file.
* sysdeps/ieee754/ldbl-128/s_remquol.c: New file.
* sysdeps/ieee754/ldbl-128/s_nearbyintl.c: New file.
* sysdeps/ieee754/ldbl-128/s_tanl.c: New file.
* sysdeps/ieee754/ldbl-128/s_rintl.c: New file.
* sysdeps/ieee754/ldbl-128/e_acoshl.c: New file.
* sysdeps/ieee754/ldbl-128/s_lroundl.c: New file.
* sysdeps/ieee754/ldbl-128/s_signbitl.c: New file.
* sysdeps/ieee754/ldbl-128/s_copysignl.c: New file.
* sysdeps/ieee754/ldbl-128/s_fabsl.c: New file.
* sysdeps/ieee754/ldbl-128/s_frexpl.c: New file.
* sysdeps/ieee754/ldbl-128/s_truncl.c: New file.
* sysdeps/ieee754/ldbl-128/s_modfl.c: New file.
* sysdeps/ieee754/ldbl-128/s_lrintl.c: New file.
* sysdeps/ieee754/ldbl-128/s_isinfl.c: New file.
* sysdeps/ieee754/ldbl-128/s_scalblnl.c: New file.
* sysdeps/ieee754/ldbl-128/e_fmodl.c: New file.
* sysdeps/ieee754/ldbl-128/s_isnanl.c: New file.
* sysdeps/ieee754/ldbl-128/math_ldbl.h: New file.
* sysdeps/ieee754/ldbl-128/strtold.c: New file.
* sysdeps/ieee754/ldbl-128/s_nextafterl.c: New file.
* sysdeps/ieee754/ldbl-128/s_nexttoward.c: New file.
* sysdeps/ieee754/ldbl-128/s_nexttowardf.c: New file.
* sysdeps/ieee754/ldbl-128/printf_fphex.c: New file.
* sysdeps/ieee754/ldbl-128/mpn2ldbl.c: New file.
* sysdeps/ieee754/ldbl-128/ldbl2mpn.c: New file.
* sysdeps/generic/math_ldbl.h: New file.
* sysdeps/generic/s_nexttowardf.c: New file.
* sysdeps/generic/strtold.c: New file.
* sysdeps/generic/ldbl2mpn.c: New file.
* math/machine/endian.h: Remove.
* sysdeps/i386/fpu/Implies: Remove.
* sysdeps/ieee754/Implies: Remove.
* math/math_private.h: Move long double macros to math_ldbl.h
header.
1999-07-12 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/posix/getaddrinfo.c (gaih_inet): For non-passive
connections without a hostname set address to localhost address.
1999-07-11 H.J. Lu <hjl@gnu.org>
* nscd/grpcache.c: Add prefix "__" to get[a-z]*_r () to get
nscd's own strong version of the get[a-z]*_r function.
* nscd/hstcache.c: Likewise.
* nscd/pwdcache.c: Likewise.
1999-07-12 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Recognize 2.95 as gcc version number.
Patch by Joel Klecker <jk@espy.org>.
1999-07-12 Andreas Schwab <schwab@suse.de>
* elf/rtld.c (dl_main): When putting back the interpreter object
handle the case where a missing object might occur in the list of
objects but not in the search list when in trace mode.
1999-07-11 Ulrich Drepper <drepper@cygnus.com>
* Versions.def (libnss_hesiod): Add GLIBC_2.2.
* hesiod/Versions (libnss_hesiod) [GLIBC_2.2]: Add
_nss_hesiod_initgroups.
1999-07-11 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/brk.c (static_data_start): New variable.
(_hurd_set_brk, init_brk): Use that instead of &__data_start.
Initialize it from &__data_start if defined, or else &_end.
1999-07-11 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/mmap.c (__mmap): Short-circuit to vm_allocate
for MAP_ANON, prot==PROT_READ|PROT_WRITE.
1999-07-09 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfprintf.c (buffered_vfprintf): Add locking.
1999-07-09 H.J. Lu <hjl@gnu.org>
* Versions.def (GLIBC_2.1.2): Added.
* nss/getXXent_r.c: Make the new ABI GLIBC_2.1.2 and keep the
old one as GLIBC_2.0.
* nss/getXXbyYY_r.c: Likewise.
* grp/Versions (getgrent_r, getgrgid_r, getgrnam_r): Added to
GLIBC_2.1.2.
* inet/Versions (getaliasbyname_r, getaliasent_r,
gethostbyaddr_r, gethostbyname2_r, gethostbyname_r,
gethostent_r, getnetbyaddr_r, getnetbyname_r, getnetent_r,
getnetgrent_r, getprotobyname_r, getprotobynumber_r,
getprotoent_r, getrpcbyname_r, getrpcbynumber_r, getrpcent_r,
getservbyname_r): Likewise.
* pwd/Versions (getpwent_r, getpwuid_r): Likewise.
* shadow/Versions (getspent_r, getspnam_r): Likewise.
1999-07-09 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/i386/bits/string.h (__memcpy_c): Help some stupid old
compilers.
(__memset_cc): Likewise.
* sysdeps/generic/libc-start.c: For SUID binaries check whether
the standard file descriptors are open.
Reported by Chris Evans <chris@ferret.lmh.ox.ac.uk>.
* sysdeps/unix/sysv/linux/syscalls.list: Remove mmap64 alias for mmap.
* sysdeps/unix/sysv/linux/mmap64.c: Test whether mapped area is in
range of mmap. If not fail.
Patches by Daniel Jacobowitz <dan@debian.org>.
* elf/rtld.c: Split _dl_start in two pieces to prevent GOT usage
before the relocation happened.
Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
* Versions.def (libnsl): Add GLIBC_2.2.
* nis/Versions (libnsl) [GLIBC_2.2]: Add xdr_ypall.
1999-07-08 Cristian Gafton <gafton@redhat.com>
* nis/yp_xdr.c (xdr_ypall): New function.
1999-07-09 Andreas Schwab <schwab@suse.de>
* elf/Makefile (headers): Remove bits/dlfcn.h and dlfcn.h.
* dlfcn/Makefile (headers): Add bits/dlfcn.h.
1999-07-09 Ulrich Drepper <drepper@cygnus.com>
* hesiod/Versions [GLIBC_2.2]: Add _nss_hesiod_initgroups.
* hesiod/hesiod-grp.c: Add initgroups support.
Patch by Nalin Dahyabhai <nsdahya1@pobox.com>.
1999-07-08 Andreas Schwab <schwab@suse.de>
* libio/iofopncook.c (fopencookie): Set _fileno to -2.
* libio/libioP.h (_IO_file_is_open): Only check for -1, not all
negative numbers.
* libio/fileops.c (_IO_new_file_close_it): Set _fileno to -1, not
EOF.
* libio/oldfileops.c (_IO_old_file_close_it): Likewise.
1999-07-08 Andreas Schwab <schwab@suse.de>
* stdio-common/vfprintf.c (buffered_vfprintf): Initialize _mode.
1999-07-08 Andreas Schwab <schwab@suse.de>
* libio/fileno.c: Return -1 instead of EOF and set errno if the
stream is not a real file stream.
1999-07-08 Andreas Schwab <schwab@suse.de>
* manual/charset.texi: Fix typos.
1999-07-07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/gnu/Makefile (libdl-routines): Add eval.
1999-07-06 Zack Weinberg <zack@rabi.columbia.edu>
* dlfcn: New directory. Move the following files from elf:
dladdr.c, dlclose.c, dlerror.c, dlfcn.h, dlopen.c,
dlopenold.c, dlsym.c, dlvsym.c.
* dlfcn/Makefile: New file.
* dlfcn/Versions: New file.
* dlfcn/dlsym.c: All ELF-specific code split out to new
function _dl_sym.
* dlfcn/dlvsym.c: All ELF-specific code split out to new
function _dl_vsym.
* elf/dl-sym.c: New file. _dl_sym and _dl_vsym are
implemented here.
* dlfcn/dladdr.c: Remove all references to ELF data structures
or headers.
* dlfcn/dlclose.c: Likewise.
* dlfcn/dlerror.c: Likewise.
* dlfcn/dlopen.c: Likewise.
* dlfcn/dlopenold.c: Likewise.
* Makeconfig (dlfcn): New variable - set to `dlfcn' if elf is
yes, empty otherwise.
(libdl): Set to dlfcn/libdl.so or libdl.a if elf is yes,
depending on build-shared.
(subdirs): Add $(dlfcn).
(rpath-dirs): Add dlfcn.
* elf/Makefile: Remove all references to libdl or its
components, except the ones relating to the test cases.
(routines): Add dl-sym.
* elf/Versions (libc): Add _dl_sym and _dl_vsym for GLIBC_2.2.
(libdl): Delete.
* elf/dl-close.c (_dl_close): Change argument to void *.
* elf/dl-open.c (_dl_open): Change return type to void *.
* elf/eval.c: Removed.
* elf/ldsodefs.h: Move prototypes of _dl_catch_error,
_dlerror_run, _dl_open, _dl_close, _dl_addr, and
_dl_mcount_wrapper_check to include/dlfcn.h. Delete
_CALL_DL_FCT macro.
* include/dlfcn.h: Also prototype _dl_sym and _dl_vsym here.
Include real header from dlfcn directory.
* include/ldsodefs.h: Removed.
* grp/initgroups.c: Use DL_CALL_FCT not _CALL_DL_FCT.
* nss/getXXbyYY_r.c: Likewise.
* nss/getXXent_r.c: Likewise.
* iconv/gconv.c: Likewise. Don't include ldsodefs.h.
* iconv/gconv_db.c: Likewise. Don't include ldsodefs.h.
* iconv/skeleton.c: Don't include ldsodefs.h.
* nss/nsswitch.h: Don't include ldsodefs.h. Include dlfcn.h.
1999-07-07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/setenv.c: Describe problem.
* malloc/malloc.c (request2size): Also set errno if failing.
* malloc/malloc.c (request2size): Take care of overflow in
addition.
* sysdeps/posix/getcwd.c: Correct last patch. Handle getcwd
(NULL, != 0) correctly.
* elf/dl-load.c: Use a few more __builtin_expect.
* sysdeps/posix/getcwd.c: When resizing buffer make sure new size
is large enough.
1999-07-07 Andreas Schwab <schwab@suse.de>
* sysdeps/unix/sysv/linux/getpt.c: Check that /dev/pts is mounted.
(_PATH_DEVPTS, DEVPTS_SUPER_MAGIC): New definitions.
(_PATH_DEVPTMX): Use _PATH_DEV.
1999-07-07 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* malloc/tst-malloc.c: New file. Tests some basic functionality.
* malloc/Makefile (tests): Add tst-malloc.
1999-07-06 Ulrich Drepper <drepper@cygnus.com>
* libio/oldtmpfile.c: Adjust call of __gen_tempname to match new
convention.
* sysdeps/unix/sysv/linux/alpha/ioperm.c: Update for some more
motherboards.
Patch by Jay Estabrook.
* sysdeps/unix/sysv/linux/configure.in: Don't test for libc4 in
ldd for SPARC.
* sysdeps/unix/sysv/linux/sparc/ldd-rewrite.sed: New file.
Patch by Cristian Gafton.
1999-07-02 Cristian Gafton <gafton@redhat.com>
* sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): "return 0"
instead of "return NULL" to make C++ happy.
1999-07-04 Mark Kettenis <kettenis@gnu.org>
* libio/iofdopen.c (_IO_new_fdopen): Set EINVAL if MODE is not
allowed by the file access mode of the open file.
1999-07-06 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/setfpucw.c: Include math.h to get all needed
macros defined.
1999-07-03 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/sparc64/submul_1.S: Fix carry handling. Optimize.
* sysdeps/sparc/sparc64/lshift.S: Make a leaf subroutine. Optimize.
* sysdeps/sparc/sparc64/rshift.S: Likewise.
* sysdeps/sparc/sparc64/mul_1.S: Optimize.
1999-07-04 Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>
* malloc/malloc.c (request2size): Check for overflow and return
NULL whenever it is encountered.
1999-07-04 Zack Weinberg <zack@rabi.columbia.edu>
* sysdeps/posix/tempname.c (__gen_tempname): Add
ability to create directories. Replace OPENIT and LARGEFILE
args with a single flags parameter.
* sysdeps/generic/tempname.c: Likewise.
* include/stdio.h: Adjust prototype of __gen_tempname to
match. Define symbolic constants for second argument.
* misc/mkdtemp.c: New file, provides new function mkdtemp().
* stdlib/stdlib.h: Prototype it.
* misc/Versions: Export it.
* misc/Makefile (routines): Add mktemp.
* manual/filesys.texi: Document it.
* misc/mktemp.c: Adjust call of __gen_tempname to match new
convention.
* misc/mkstemp.c: Likewise.
* stdio-common/tempnam.c: Likewise.
* stdio-common/tmpfile.c: Likewise.
* stdio-common/tmpfile64.c: Likewise.
* stdio-common/tmpnam.c: Likewise.
* stdio-common/tmpnam_r.c: Likewise.
1999-07-05 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Support
R_SPARC_OLO10 relocations.
* elf/elf.h (R_SPARC_OLO10): Fix comment.
1999-07-02 Tim Waugh <tim@cyberelk.demon.co.uk>
* posix/wordexp-test.c: Revert bogus 'unset IFS' change. It
doesn't belong in the tests, but in the wordexp implementation.
* posix/wordexp.c (exec_comm): Unset IFS so that subshells don't
split fields.
1999-07-01 Cristian Gafton <gafton@redhat.com>
* time/strptime.c (strptime): Initialize the tm struct first to avoid
returning bogus results on incomplete data.
(strptime_internal): day_of_the_week() requres bith tm_mon and
tm_mday to be initializaed.
Computer them first if they are not given.
(strptime_internal): (have_mon, have_mday): New variables.
1999-07-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* inet/rcmd.c (__icheckhost): Fix typo in last patch.
1999-07-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* wcsmbs/wcschr.c (wcschr): Fix last patch: Add missing semicolon.
* wcsmbs/wcsrchr.c (wcsrchr): Likewise.
1999-07-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* posix/wordexp.c (parse_tilde): Handle failing call to
get.*_r functions correctly for non-existing entry.
* sysdeps/posix/cuserid.c (cuserid): Likewise.
* sysdeps/posix/getaddrinfo.c (gaih_inet_serv): Likewise.
1999-06-30 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/gethostid.c: Handle failing call to
getxxbyYY_r functions correctly for non-existing entry.
* sunrpc/getrpcport.c: Likewise.
* sunrpc/clnt_simp.c: Likewise.
* inet/rexec.c: Likewise.
* sunrpc/clnt_gen.c: Likewise.
* inet/rcmd.c: Likewise.
* sysdeps/generic/glob.c: Likewise.
1999-06-29 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* pwd/Makefile (tests): Add rules for tst-getpw.
* pwd/tst-getpw.c: New program to test getpw.
1999-06-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* inet/rcmd.c (__icheckhost): Test for gethostbyname_r result
correctly.
1999-06-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/arith.texi (System V Number Conversion): Fix the
description which confused pointer and value to pointer.
Reported by Andries.Brouwer@cwi.nl.
1999-06-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* pwd/getpw.c (__getpw): Check for NULL result pointer.
1999-06-29 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/users.texi (Lookup User): Document POSIX return
semantics for getpwuid_r and getgrgid_r.
* manual/socket.texi (Host Names): Document that the result
pointer is null in case of error or host not found and fix a
typo. Give a small example.
1999-06-30 Ulrich Drepper <drepper@cygnus.com>
* pwd/getpw.c: Add warning since no buffer size is given and
therefore no overrun tests are possible.
1999-06-30 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* pwd/pwd.h: Add getpw prototype declaration.
1999-06-30 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/wcsrchr.c: Fix handling of L'\0' parameter.
* wcsmbs/wcschr.c: Likewise.
1999-06-28 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/e_gamma_r.c: Initialize *signgamp for NaN
returns.
* sysdeps/libm-ieee754/e_gammaf_r.c: Likewise.
* sysdeps/libm-ieee754/e_gammal_r.c: Likewise.
Reported by John Reiser <jreiser@BitWagon.com> [PR libc/1185].
* elf/dl-dst.h: Fix typo.
* elf/dl-open.c: Likewise.
1999-06-26 Zack Weinberg <zack@rabi.columbia.edu>
* elf/dl-libc.c: New file, provides three functions:
__libc_dlopen, __libc_dlclose, __libc_dlsym.
* include/dlfcn.h: Prototype them. Prototype _dl_addr.
* elf/Makefile (routines): Add dl-libc.c.
* elf/dl-profstub.c (_dl_mcount_wrapper): Change type of
argument to void *.
* elf/ldsodefs.h: Change proto and use of _dl_mcount_wrapper to match.
* iconv/gconv.c: Include dlfcn.h.
* iconv/gconv_db.c: Likewise.
* malloc/mtrace.c: Likewise. Don't include ldsodefs.h.
* iconv/gconv_int.h (struct __gconv_loaded_object): Change
`handle' to a void *.
(__gconv_find_func): Delete prototype.
* iconv/gconv_dl.c: Don't include ldsodefs.h. Remove
dlerror_run and related functions and structs. Use
__libc_dlopen, __libc_dlsym, __libc_dlclose.
* nss/nsswitch.c: Likewise.
1999-06-28 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/gethostid.c: Test for gethostbyname_r
function correctly.
* sunrpc/getrpcport.c: Test for gethostbyname_r function
correctly.
* sunrpc/clnt_simp.c: Test for gethostbyname_r function correctly.
* sunrpc/clnt_gen.c: Test for gethostbyname_r and getprotobyname_r
functions correctly.
* inet/rexec.c (rexec): Test for gethostbyname_r result correctly.
* inet/rcmd.c: Test for gethostbyname_r result correctly. Optimize
file reading a bit.
* sysdeps/generic/glob.c: Test for getpwnam_r result correctly.
1999-06-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/string.texi (Copying and Concatenation): Mention that
strndup is a GNU extension.
1999-06-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* pwd/getpw.c (__getpw): Fix check for error return.
1999-06-25 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dl-deps.c (_dl_map_object_deps): When looking for the next
occurence of the aux object start with the current list entry, not
the new one. Adjust tail pointer in the unique list. Explain how
the meaning of the variables changes [PR libc/1168].
1999-06-27 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/m68k/fpu/Dist: New file.
1999-06-26 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/m68k/fpu/bits/mathinline.h: Move all libm internal
definitions...
* sysdeps/m68k/fpu/mathimpl.h: ... here. New file.
* sysdeps/m68k/fpu/e_acos.c: Include "mathimpl.h".
* sysdeps/m68k/fpu/e_atan2.c: Likewise.
* sysdeps/m68k/fpu/e_fmod.c: Likewise.
* sysdeps/m68k/fpu/e_pow.c: Likewise.
* sysdeps/m68k/fpu/e_scalb.c: Likewise.
* sysdeps/m68k/fpu/s_ccos.c: Likewise.
* sysdeps/m68k/fpu/s_ccosh.c: Likewise.
* sysdeps/m68k/fpu/s_cexp.c: Likewise.
* sysdeps/m68k/fpu/s_csin.c: Likewise.
* sysdeps/m68k/fpu/s_csinh.c: Likewise.
* sysdeps/m68k/fpu/s_ilogb.c: Likewise.
* sysdeps/m68k/fpu/s_llrint.c: Likewise.
* sysdeps/m68k/fpu/s_llrintf.c: Likewise.
* sysdeps/m68k/fpu/s_llrintl.c: Likewise.
* sysdeps/m68k/fpu/s_modf.c: Likewise.
1999-06-25 Roland McGrath <roland@baalperazim.frob.com>
* hurd.h, hurd/hurd/fd.h, hurd/hurd/port.h, hurd/hurd/signal.h,
hurd/hurd/threadvar.h, hurd/hurd/userlink.h: Instead of
_EXTERN_INLINE, use a macro specific to each file,
_HURD_FD_H_EXTERN_INLINE and the like.
* hurd/Makefile (inline-headers): New variable.
(routines): Remove hurdinline. Add $(inlines).
(inlines): New variable.
($(inlines:%=$(objpfx)%.c)): New static pattern rule to generate them.
(generated): Append those here.
* hurd/hurdinline.c: File removed.
* sysdeps/generic/glob64.c: Include <stddef.h> for NULL.
* mach/Versions (libc: GLIBC_2.0): Add __mig_strncpy.
1999-06-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* nscd/connections.c (nscd_run): Use correct type for optlen variable.
1999-06-25 Ulrich Drepper <drepper@cygnus.com>
* string/bits/string2.h (strnlen): Remove extra prototype.
1999-06-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/filesys.texi (Working on Directory Trees): Fix typos.
Reported by Andries.Brouwer@cwi.nl.
1999-06-24 Ulrich Drepper <drepper@cygnus.com>
* nscd/connections.c (handle_request): Use correct type for optlen
variable.
* misc/tst-efgcvt.c (ecvt_tests): Test 92.0 with ndigits == 16.
* misc/efgcvt_r.c (ecvt_r): Limit ndigits before passing it to fcvt_r.
1999-06-24 Thorsten Kukuk <kukuk@suse.de>
* nscd/grpcache.c: Add "notfound" data to cache, not iov pointer.
* nscd/pwdcache.c: Likewise.
* nscd/hstcache.c: Likewise.
1999-06-23 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/fpu_control.c: Include math.h for __P definition.
* posix/getopt.h: Include stdio.h.
* manual/arith.texi: Document restriction of ndigit parameter of
ecvt and friends.
* misc/efgcvt.c: Define NDIGIT_MAX.
(gcvt): Limit precision in sprintf call to NDIGIT_MAX.
Do not dynamically allocate the static buffers. They are small enough.
* misc/efgcvt_r.c: Define NDIGIT_MAX.
(fcvt_r): Limit precision in snprintf call to NDIGIT_MAX.
* misc/qefgcvt.c: Define NDIGIT_MAX.
* misc/qefgcvt_r.c: Likewise.
* misc/tst-efgcvt.c (special): Add test for large ndigit parameter.
1999-06-23 Zack Weinberg <zack@rabi.columbia.edu>
* libio/stdio.h: Define stdin, stdout, stderr as macros.
* math/complex.h: Don't define CX_LIMITED_RANGE_{ON,OFF,DEFAULT}.
These are *pragmas* not macros.
* wcsmbs/wchar.h: Fix comment.
* grp/grp.h: Use __foo_t_defined convention to typedef things
only once.
* io/sys/stat.h: Likewise.
* libio/stdio.h: Likewise.
* posix/unistd.h: Likewise.
* posix/sys/types.h: Likewise.
* posix/sys/wait.h: Likewise.
* pwd/pwd.h: Likewise.
* signal/signal.h: Likewise.
* sysdeps/generic/stdint.h: Likewise.
* sysdeps/gnu/utmpx.h: Likewise.
* termios/termios.h: Likewise.
1999-06-23 Ulrich Drepper <drepper@cygnus.com>
* stdio/fputc.c: Don't define alias if fputc is defined as a
macro.
* stdio/putc.c: Define weak alias here since it is not done
anymore in fputc.c.
1999-06-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* assert/assert.h: Don't produce `defined' as part of macro
expansion.
1999-06-23 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/read.c (__libc_read): Just call __pread with
OFFSET argument of (off_t) -1.
* sysdeps/mach/hurd/write.c (__libc_write): Just call __pwrite with
OFFSET argument of (off_t) -1.
* sysdeps/mach/hurd/pwrite.c: New file.
* sysdeps/mach/hurd/pread.c: New file.
* hurd/fd-read.c (_hurd_fd_read): Take new parameter OFFSET and
pass it in the RPC instead of always -1.
* hurd/fd-write.c (_hurd_fd_write): Likewise.
* hurd/hurd/fd.h: Update decls.
1999-06-22 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* libio/wscanf.c: Include <wchar.h> for prototype.
1999-06-22 Ulrich Drepper <drepper@cygnus.com>
* manual/io.texi. Fix typos.
* manual/stdio.texi: Likewise.
Patches by Brian Youmans <3diff@gnu.org>.
1999-06-22 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/powerpc/strcmp.S: Don't return a zero result if the high
bits of two words differ.
1999-06-21 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* libio/Makefile (routines): Add putwchar and putwchar_u.
* libio/putwchar.c: Include <wchar.h> instead of "stdio.h".
* libio/putwchar_u.c: Likewise. Use _IO_stdout instead of
stdout. Fix parameter name.
* libio/getchar.c: Consistently use _IO_stdin instead of stdin.
* libio/getchar_u.c: Likewise.
* libio/putchar_u.c: Use _IO_stdout instead of stdout.
1999-06-21 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* include/features.h (__GNUC_PREREQ): Don't generate `defined' via
macro expansion---it's undefined. Properly parenthesize
substituted parameters.
(__GLIBC_PREREQ): Likewise.
1999-06-21 Ulrich Drepper <drepper@cygnus.com>
* Makeconfig (CPPFLAGS): Revert last change. It has too many
weird effects.
* stdlib/longlong.h: Provide __P definition if not already
defined.
* include/wchar.h: Use __gnuc_va_list not va_list in prototype.
1999-06-18 Thorsten Kukuk <kukuk@suse.de>
* sysdeps/alpha/atomicity.h: Correct counting of subsections.
1999-06-17 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdlib/tst-strtoll.c: Avoid warning about huge constant.
1999-06-20 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdio-common/vfprintf.c (group_member): Make parameters and
return types pointers to CHAR_T instead of UCHAR_T.
(vfprintf): Change type of work_buffer, workend and string to
CHAR_T pointer/array.
(process_arg, process_string_arg): Adjust/remove casts. Add
missing use of L_ macro.
(printf_unknown): Add missing uses of L_ macro.
1999-06-20 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* wcsmbs/wcschrnul.c: Explicitly cast return value to avoid
warning.
1999-06-20 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* libio/wgenops.c (__wuflow): Fix use of WEOF vs. EOF. Call
_IO_switch_to_wget_mode instead of _IO_switch_to_get_mode.
(__wunderflow): Likewise.
(_IO_switch_to_wget_mode): Likewise.
(_IO_init_wmarker): Likewise.
* libio/wfileops.c (_IO_wfile_seekoff): Call
_IO_switch_to_wget_mode, not _IO_switch_to_get_mode.
(_IO_wfile_jumps): Fix pbackfail entry.
* libio/iosetvbuf.c (_IO_setvbuf): Only call wide char setbuf
function if the stream is currently unoriented.
1999-06-19 Zack Weinberg <zack@rabi.columbia.edu>
* wcsmbs/wchar.h: Define __need___va_list before including stdarg.h.
Wrap all wide stream functions with #ifdef __USE_ISOC9X. Use
__gnuc_va_list in v*w(printf|scanf) prototypes.
1999-06-20 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* libio/oldiopopen.c (_IO_old_proc_open): Apply change from
1999-03-29 to iopopen also here.
Reported by Richard Braakman <dark@xs4all.nl>.
1999-06-20 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* include/features.h: Use __GNUC_PREREQ.
* sysdeps/i386/fpu/bits/mathinline.h: Likewise
1999-06-19 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdio-common/vfscanf.c (ungetc, inchar) [COMPILE_WPRINTF]:
Change EOF to WEOF and remove cast.
(UNGETC): Remove macro.
(_IO_vfwscanf): Change isspace to ISSPACE and UNGETC to ungetc.
* stdio-common/printf-parse.h (find_spec) [!COMPILE_WPRINTF]:
Change ISASCII to isascii and MBRLEN to mbrlen.
(parse_one_spec): Compare info.spec always against wchar_t
values.
* stdio-common/vfprintf.c: Remove unused ISASCII and MBRLEN.
(_itoa, _itoa_word) [COMPILE_WRPINTF]: Don't cast second argument.
(NOT_IN_JUMP_RANGE, CHAR_CLASS): Change (int) to (INT_T), use L_.
1999-06-19 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* libio/Makefile (shared-only-routines): Add oldiofgetpos,
oldiofgetpos64, oldiofsetpos and oldiofsetpos64.
(routines): Include oldiofgetpos, oldiofgetpos64, oldiofsetpos and
oldiofsetpos64 only if doing versioning.
1999-06-20 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/wchar.h: Declare wcstof and wcstold for ISO C9x.
1999-06-20 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* libio/libio.h: Fix last patch.
1999-06-20 Ulrich Drepper <drepper@cygnus.com>
* libio/libio.h (_IO_putwc): Correct type of first argument.
* wcsmbs/wchar.h: (fputwc, putwc, putwchar, fputwc_unlocked,
putwc_unlocked, putwchar_unlocked): Likewise.
* libio/fputwc.c: Likewise.
* libio/fputwc_unlocked.c: Likewise.
* libio/putwc.c: Likewise.
* libio/putwc_unlocked.c: Likewise.
* libio/putwchar.c: Likewise.
* libio/putwchar_unlocked.c: Likewise.
1999-06-19 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/gnu/siglist.h: File moved to ...
* sysdeps/generic/siglist.h: ... here. This file should be usable for
any platform, since it just associates the SIG* macros with text names
and descriptions. For any signal macros do not exist on every
platform, we can use #ifdef tests here and still use this single
common file for all platforms.
* sysdeps/generic/siglist.c: Rewrite using <siglist.h>. This file
should be usable for all platforms after the binary compatibility
stuff in the current sysdeps/gnu version is no longer required.
* sysdeps/generic/Makefile: Remove rules for generating siglist.c.
* sysdeps/generic/make_siglist.c: File removed.
* sysdeps/mach/hurd/siglist.h: Use #include_next.
* sysdeps/unix/sysv/linux/siglist.h: Likewise.
1999-06-16 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/unix/sysv/linux/siglist.c: Moved to ...
* sysdeps/gnu/siglist.c: ... here.
Use <siglist.h> instead of "siglist.h", to ensure sysdeps-search.
Use <bits/wordsize.h> instead of <sizes.h> to determine PTR_SIZE_STR.
* sysdeps/gnu/siglist.h: New file, contents from linux version.
Add entry for SIGLOST protected by #ifdef.
* sysdeps/unix/sysv/linux/siglist.h: Just #include that file,
and define OLD_SIGLIST_SIZE_STR.
* sysdeps/mach/hurd/siglist.h: New file, likewise.
1999-06-18 Zack Weinberg <zack@rabi.columbia.edu>
* include/features.h: Define new macros __GNUC_PREREQ and
__GLIBC_PREREQ which can be used to test the version of gcc
and glibc respectively.
* assert/assert.h: Use __GNUC_PREREQ.
* intl/libintl.h: Likewise.
* math/complex.h: Likewise.
* math/tgmath.h: Likewise.
* misc/sys/cdefs.h: Likewise.
* posix/sys/types.h: Likewise.
* socket/sys/socket.h: Likewise.
* string/bits/string2.h: Likewise.
* sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
* sysdeps/i386/fpu/bits/mathinline.h: Likewise.
1999-06-18 Zack Weinberg <zack@rabi.columbia.edu>
* include/libintl.h: Declare _libc_intl_domainname here.
Define _ and N_ here.
* include/libc-symbols.h: Don't include <libintl.h>. Don't
define _ and N_. Don't declare _libc_intl_domainname.
* Makeconfig (CPPFLAGS): Use -imacros to read libc-symbols.h.
* db2/config.h: Don't include sys/stat.h or define
HAVE_ST_BLKSIZE here...
* db2/compat.h: ...do it here.
* linuxthreads/internals.h: Include bits/libc-tsd.h after all
other headers.
* linuxthreads/no-tsd.c: Include sys/cdefs.h for __P.
* iconv/iconv.c: Include stddef.h for NULL.
* malloc/malloc.h: Include features.h.
* sysdeps/generic/morecore.c: Use __malloc_ptr_t not __ptr_t.
* sysdeps/unix/make_errlist.c: Write an "#include <libintl.h>"
into the generated file.
* sysdeps/gnu/errlist.awk: Likewise.
* sysdeps/gnu/errlist.c: Rebuilt.
* assert/assert-perr.c: Include libintl.h.
* assert/assert.c: Likewise.
* elf/dl-open.c: Likewise.
* elf/dlsym.c: Likewise.
* elf/dlvsym.c: Likewise.
* iconv/iconv_prog.c: Likewise.
* inet/rcmd.c: Likewise.
* inet/ruserpass.c: Likewise.
* locale/programs/charset.c: Likewise.
* locale/programs/ld-collate.c: Likewise.
* locale/programs/ld-ctype.c: Likewise.
* locale/programs/ld-messages.c: Likewise.
* locale/programs/ld-monetary.c: Likewise.
* locale/programs/ld-numeric.c: Likewise.
* locale/programs/ld-time.c: Likewise.
* locale/programs/locfile.c: Likewise.
* locale/programs/repertoire.c: Likewise.
* login/programs/database.c: Likewise.
* login/programs/request.c: Likewise.
* malloc/mcheck.c: Likewise.
* misc/error.c: Likewise.
* nis/nis_call.c: Likewise.
* nis/nis_callback.c: Likewise.
* nis/nis_error.c: Likewise.
* nis/nis_local_names.c: Likewise.
* nis/nis_print.c: Likewise.
* nis/nis_print_group_entry.c: Likewise.
* nis/ypclnt.c: Likewise.
* nis/nss_nisplus/nisplus-publickey.c: Likewise.
* nscd/cache.c: Likewise.
* nscd/connections.c: Likewise.
* nscd/grpcache.c: Likewise.
* nscd/hstcache.c: Likewise.
* nscd/nscd_conf.c: Likewise.
* nscd/nscd_stat.c: Likewise.
* nscd/pwdcache.c: Likewise.
* posix/id.c: Likewise.
* resolv/herror.c: Likewise.
* stdio-common/psignal.c: Likewise.
* string/strsignal.c: Likewise.
* sunrpc/auth_unix.c: Likewise.
* sunrpc/clnt_perr.c: Likewise.
* sunrpc/clnt_raw.c: Likewise.
* sunrpc/clnt_tcp.c: Likewise.
* sunrpc/clnt_udp.c: Likewise.
* sunrpc/clnt_unix.c: Likewise.
* sunrpc/get_myaddr.c: Likewise.
* sunrpc/pm_getmaps.c: Likewise.
* sunrpc/pmap_clnt.c: Likewise.
* sunrpc/pmap_rmt.c: Likewise.
* sunrpc/rpc_main.c: Likewise.
* sunrpc/rpc_scan.c: Likewise.
* sunrpc/svc_run.c: Likewise.
* sunrpc/svc_simple.c: Likewise.
* sunrpc/svc_tcp.c: Likewise.
* sunrpc/svc_udp.c: Likewise.
* sunrpc/svc_unix.c: Likewise.
* sunrpc/xdr_rec.c: Likewise.
* sunrpc/xdr_ref.c: Likewise.
* sysdeps/mach/hurd/mips/dl-machine.c: Likewise.
* sysdeps/posix/gai_strerror.c: Likewise.
* sysdeps/unix/siglist.c: Likewise.
* sysdeps/unix/sysv/linux/siglist.c: Likewise.
* sysdeps/unix/sysv/linux/arm/siglist.c: Likewise.
* sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c: Likewise.
* timezone/zic.c: Likewise.
1999-06-18 H.J. Lu <hjl@gnu.org>
* localedata/Makefile (charmaps): Exclude SCCS.
(locales): Likewise.
(repertoiremaps): Likewise.
1999-06-18 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/bsd-_setjmp.c: Include setjmp.h.
* sysdeps/generic/bsd-setjmp.c: Likewise.
* sunrpc/xdr_sizeof.c (x_inline): Cleanup pointer assignments.
* iconv/gconv_open.c: Include string.h for memset prototype.
* libio/libioP.h (FILEBUF_LITERAL): Add missing parameter to macro
definitions.
* sysdeps/unix/sysv/linux/init-first.h: Add extra cast in argc
assignment to avoid warning on 64bit platforms.
1999-06-17 Ulrich Drepper <drepper@cygnus.com>
* libio/libio.h (_IO_codecvt): Change __P ot __PMT.
* nss/getXXbyYY_r.c: Return error code not -1.
* nss/getXXent_r.c: Likewise.
* nss/getXXbyYY.c: Expect return value to be ERANGE if buffer is too
small.
* nscd/nscd_getgr_r.c: Return -1 in case nscd is not available and
value > 0 for error.
* nscd/nscd_gethst_r.c: Likewise.
* nscd/nscd_getpw_r.c: Likewise.
1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/bits/ioctl-types.h: Add missing line
disciplines.
1999-06-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* nscd/nscd_nischeck.c: Fix typos.
1999-06-17 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Don't fail
always when oact is NULL.
Patch by Christian Meder <meder@isr.uni-stuttgart.de>.
1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* math/libm-test.c (jn_test): Adjust delta.
1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* libio/vwprintf.c: Include <wchar.h> for prototypes.
* libio/wprintf.c: Likewise.
1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* elf/dl-load.c (_dl_init_paths): Add one more element to aelem
to not write beyond allocated memory.
Reported by John Reiser <jreiser@BitWagon.com>, closes PR libc/1167.
1999-06-17 Ulrich Drepper <drepper@cygnus.com>
* malloc/mtrace.c: Keep lock while printing output lines.
Patch by carsten.zimmermann@mediaways.net [PR libc/1166].
1999-06-16 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Add warnings about broken code.
* Versions.def: Add GLIBC_2.2 for libc.
* iconv/gconv.h: Make header suitable for inclusion in public header
by protecting all names with __.
* iconv/gconv.c: Adapt for symbol name changes.
* iconv/gconv.h: Likewise.
* iconv/gconv_builtin.c: Likewise.
* iconv/gconv_close.c: Likewise.
* iconv/gconv_db.c: Likewise.
* iconv/gconv_dl.c: Likewise.
* iconv/gconv_int.h: Likewise.
* iconv/gconv_open.c: Likewise.
* iconv/gconv_simple.c: Likewise.
* iconv/iconv.c: Likewise.
* iconv/iconv_close.c: Likewise.
* iconv/iconv_open.c: Likewise.
* iconv/loop.c: Likewise.
* iconv/skeleton.c: Likewise.
* iconvdata/8bit-gap.c: Likewise.
* iconvdata/8bit-generic.c: Likewise.
* iconvdata/ansi_x3.110.c: Likewise.
* iconvdata/big5.c: Likewise.
* iconvdata/cns11643.h: Likewise.
* iconvdata/cns11643l1.h: Likewise.
* iconvdata/euc-cn.c: Likewise.
* iconvdata/euc-jp.c: Likewise.
* iconvdata/euc-kr.c: Likewise.
* iconvdata/euc-tw.c: Likewise.
* iconvdata/gb2312.h: Likewise.
* iconvdata/iso-2022-jp.c: Likewise.
* iconvdata/iso-2022-kr.c: Likewise.
* iconvdata/iso646.c: Likewise.
* iconvdata/iso8859-1.c: Likewise.
* iconvdata/iso_6937-2.c: Likewise.
* iconvdata/iso_6937.c: Likewise.
* iconvdata/jis0201.h: Likewise.
* iconvdata/jis0208.h: Likewise.
* iconvdata/jis0212.h: Likewise.
* iconvdata/johab.c: Likewise.
* iconvdata/ksc5601.h: Likewise.
* iconvdata/sjis.c: Likewise.
* iconvdata/t.61.c: Likewise.
* iconvdata/uhc.c: Likewise.
* stdlib/mblen.c: Likewise.
* stdlib/mbtowc.c: Likewise.
* stdlib/wctomb.c: Likewise.
* wcsmbs/btowc.c: Likewise.
* wcsmbs/mbrtowc.c: Likewise.
* wcsmbs/mbsnrtowcs.c: Likewise.
* wcsmbs/mbsrtowcs.c: Likewise.
* wcsmbs/wchar.h: Likewise.
* wcsmbs/wcrtomb.c: Likewise.
* wcsmbs/wcsmbsload.c: Likewise.
* wcsmbs/wcsmbsload.h: Likewise.
* wcsmbs/wcsnrtombs.c: Likewise.
* wcsmbs/wcsrtombs.c: Likewise.
* wcsmbs/wctob.c: Likewise.
* include/limits.h (MB_LEN_MAX): Increase to 16.
* sysdeps/generic/_G_config.h: Define _G_fpos_t as struct. Define
_G_iconv_t.
* sysdeps/unix/sysv/linux/_G_config.h: Likewise.
* include/wchar.h: Change mbstate_t to __mbstate_t.
* libio/Makefile (routines): Add wfiledoalloc, oldiofgetpos,
oldiofgetpos64, oldiofsetpos, oldiofsetpos64, fputwc, fputwc_u,
getwc, getwc_u, getwchar, getwchar_u, iofgetws, iofgetws_u,
iofputws, iofputws_u, iogetwline, iowpadn, ioungetwc, putwc, putwc_u,
putchar, putchar_u, swprintf, vwprintf, wprintf, wscanf, fwscanf,
vwscanf, vswprintf, iovswscanf, swscanf, wgenops, wstrops, wfileops,
and iofwide.
(tests): Add tst_swprintf, tst_wprintf, tst_swscanf, and tst_wscanf.
* libio/Versions: Add _IO_fgetpos, _IO_fgetpos64, _IO_fsetpos,
_IO_fsetpos64, fgetpos, fgetpos64, fgetwc, fgetwc_unlocked, fgetws,
fgetws_unlocked, fputwc, fputwc_unlocked, fputws, fputws_unlocked,
fsetpos, fsetpos64, fwide, fwprintf, fwscanf, getwc, getwc_unlocked,
getwchar, getwchar_unlocked, putwc, putwc_unlocked, putwchar,
putwchar_unlocked, swprintf, swscanf, ungetwc, vfwprintf, vswprintf,
vwprintf, vfwscanf, vswscanf, vwscanf, wprintf, and wscanf to
GLIBC_2.2 for libc.
* libio/libio.h: Define codecvt struct. Define _IO_wide_data.
Extend _IO_file contain pointer to codecvt, widedata and mode.
(_IO_getwc_unlocked): New macro.
(_IO_putwc_unlocked): New macro.
(_IO_fwide): New macro.
* libio/libioP.h: Add new prototypes and adjust existing declarations.
* libio/fileops.c (_IO_new_file_close_it): Reset normal or widedata
buffers based on mode.
(new_do_write): Set _IO_write_end to _IO_buf_end if stream is wide
oriented.
(_IO_new_file_overflow): Don't depend only on _IO_CURRENTLY_PUTTING
flag to be enough to signal unallocated buffer. For wide oriented
stream don't make it linebuffered. Don't use _IO_do_flush, use
_IO_new_do_write directly.
(_IO_new_file_seekoff): Change return value type to _IO_off64_t.
(_IO_file_seek): Likewise.
* libio/genops.c (_IO_least_marker): Make global.
(__underflow): Orient stream if not already done.
(__uflow): Likewise.
(_IO_default_seekpos): Change to type _IO_off64_t.
(_IO_default_seekoff): Likewise.
(_IO_default_seek): Likewise.
(_IO_no_init): New function. Similar to _IO_init but allows to orient
in initialization.
* libio/iolibio.h: Add prototype for _IO_vswprintf. Change _IO_pos_BAD
to use _IO_off64_t.
* libio/ftello.c: Use _IO_off_t. For now abort when use with wide
char stream.
* libio/ftello64.c: Likewise.
* libio/ioftell.c: Likewise.
* libio/iofopncook.c: Likewise.
* libio/ioseekoff.c: Likewise.
* libio/ioseekpos.c: Likewise.
* libio/oldfileops.c: Likewise.
* libio/iofgetpos.c: Store state of conversion if necessary.
* libio/iofgetpos64.c: Likewise.
* libio/iofsetpos.c: Restore conversion state if necessary.
* libio/iofsetpos64.c: Likewise.
* libio/iofdopen.c: Initialize so that stream can be wide oriented.
* libio/iofopen.c: Likewise.
* libio/iofopen64.c: Likewise.
* libio/iopopen.c: Likewise.
* libio/iovdprintf.c: Likewise.
* libio/iovsprintf.c: Likewise.
* libio/iovsscanf.c: Likewise.
* libio/memstream.c: Likewise.
* libio/obprintf.c: Likewise.
* libio/iofputs.c: Orient stream if not already happened.
* libio/iofputs_u.c: Likewise.
* libio/iofwrite.c: Likewise.
* libio/iofwrite_u.c: Likewise.
* libio/ioputs.c: Likewise.
* libio/iosetbuffer.c: Handle not yet oriented stream.
* libio/iosetvbuf.c: Likewise.
* libio/oldstdfiles.c: Adjust FILEBUF_LITERAL call.
* libio/stdfiles.c: Likewise.
* libio/strops.c (_IO_str_overflow): Correctly free buffer after
failed allocation.
(_IO_str_seekoff): Use _IO_off64_t.
* libio/vasprintf.c: Pre-orient stream.
* libio/vsnprintf.c: Likewise.
* libio/fputwc.c: New file.
* libio/fputwc_u.c: New file.
* libio/fwprintf.c: New file.
* libio/fwscanf.c: New file.
* libio/getwc.c: New file.
* libio/getwc_u.c: New file.
* libio/getwchar.c: New file.
* libio/getwchar_u.c: New file.
* libio/iofgetws.c: New file.
* libio/iofgetws_u.c: New file.
* libio/iofputws.c: New file.
* libio/iofputws_u.c: New file.
* libio/iofwide.c: New file.
* libio/iogetwline.c: New file.
* libio/ioungetwc.c: New file.
* libio/iovswscanf.c: New file.
* libio/iowpadn.c: New file.
* libio/oldiofgetpos.c: New file.
* libio/oldiofgetpos64.c: New file.
* libio/oldiofsetpos.c: New file.
* libio/oldiofsetpos64.c: New file.
* libio/putwc.c: New file.
* libio/putwc_u.c: New file.
* libio/putwchar.c: New file.
* libio/putwchar_u.c: New file.
* libio/swprintf.c: New file.
* libio/swscanf.c: New file.
* libio/tst_swprintf.c: New file.
* libio/tst_swscanf.c: New file.
* libio/tst_wprintf.c: New file.
* libio/tst_wscanf.c: New file.
* libio/tst_wscanf.input: New file.
* libio/vswprintf.c: New file.
* libio/vwprintf.c: New file.
* libio/vwscanf.c: New file.
* libio/wfiledoalloc.c: New file.
* libio/wfileops.c: New file.
* libio/wgenops.c: New file.
* libio/wprintf.c: New file.
* libio/wscanf.c: New file.
* libio/wstrops.c: New file.
* stdio-common/Makefile (routines): Add _itowa, itowa-digits,
vfwprintf, and vfwscanf.
* stdio-common/_itoa.c (base_table): Rename to _IO_base_table and
make global.
* stdio-common/_itowa.c: New file.
* stdio-common/_itowa.h: New file.
* stdio-common/itoa-digits.c: Minimal optimization.
* stdio-common/itowa-digits.c: New file.
* stdio-common/printf-parse.h: Allow use in wide character context.
* stdio-common/printf-prs.c: Define ISASCII and MBRLEN.
* stdio-common/printf.h (printf_info): Add wide bit.
* stdio-common/printf_fp.c: Determine from wide bit whether stream
is wide oriented or not.
* stdio-common/printf_size.c: Likewise.
* sysdeps/generic/printf_fphex.c: Likewise.
* stdlib/strfmon.c: Call __printf_fp with wide bit cleared.
* stdio-common/vfprintf.c: Rewrite to allow use in wide character
context.
* stdio-common/vfscand.c: Likewise.
* stdio-common/vfwprintf.c: New file.
* stdio-common/vfwscanf.c: New file.
* time/Makefile (routines): Add wcsftime.
(tests): Add tst_wcsftime.
* time/Versions: Add wcsftime to GLIBC_2.2 for libc.
* time/strftime.c: Make usable as wcsftime.
* time/wcsftime.c: New file.
* time/tst_wcsftime.c: New file.
* wcsmbs/Makefile (routines): Add wmempcpy and wcschrnul.
* wcsmbs/Versions: Add wmempcpy and wcschrnul to GLIBC_2.2 for libc.
* wcsmbs/wcschrnul.c: New file.
* wcsmbs/wmemcpy.c: New file.
* wcsmbs/wmemcpy.c: Rename to __wmemcpy and make wmemcpy weak alias.
* wcsmbs/wmemmove.c: Likewise for wmemmove.
* manual/stdio.texi: Document is_char and wide element if printf_info.
* manual/time.texi: Document wcsftime.
* include/wchar.h: Add prototypes for __wmemcpy, __wmempcpy,
__wmemmove, __wcschrnul, and __vfwscanf.
* locale/langinfo.h: Add new LC_TIME entries for wchar_t data.
* locale/C-time.c: Adapt for above change.
* locale/categories.def: Likewise.
* locale/localeinfo.h: Likewise.
* localedata/Makefile: Don't run tests for now.
* manual/errno.texi: Fix typos.
* manual/memory.texi: Likewise.
* manual/ctype.texi: Likewise.
Patches by Brian Youmans <3diff@gnu.org>.
1999-06-16 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/netax25/ax25.h (AX25_PIDINCL): Added.
1999-06-14 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/sys/sysmacros.h [!__GNUC__]: Use correct
word order.
* sysdeps/unix/sysv/linux/alpha/sys/sysmacros.h: New file.
* sysdeps/unix/sysv/linux/sparc/sys/sysmacros.h: New file.
1999-06-15 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* db2/db/db.c: Restore __nss_db_open alias.
* db2/db_int.h: Use <db.h> instead of "db.h" to find header in
include.
* db2/os/os_rw.c (__os_write): Maintain const correctness.
* db2/progs/db_load/db_load.c (main): Avoid ambiguous `else'.
1999-06-15 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/printf-parse.h (parse_one_spec): Don't set
is_longlong if not necessary.
1999-06-15 H.J. Lu <hjl@gnu.org>
* Make-dist (sysdep_dirs): Exclude SCCS.
* MakeTAGS (sysdep_dirs): Likewise.
1999-06-15 Ulrich Drepper <drepper@cygnus.com>
* posix/regex.c (re_error_msgid): Remove extra commas.
1999-06-14 Geoff Keating <geoffk@ozemail.com.au>
* stdlib/tst-strtoll.c: New file.
* stdlib/Makefile (tests): Add tst-strtoll.c
* stdlib/strtol.c: It is not generally true that if
(unsigned)a*(unsigned)b overflows, then the result is
less than 'a'.
1999-06-14 Thorsten Kukuk <kukuk@suse.de>
* nscd/connections.c (handle_request): Only root is allowed to
send GETSTAT request in non secure mode.
* nscd/nscd.c: Print error message if other then root try to
use getstat.
1999-06-15 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/alpha/syscalls.list: Add __sysctl.
1999-06-15 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/time.texi (Limits on Resources): Describe RLIMIT_AS.
Closes PR libc/1164, reported by sascha@schumann.2ns.de.
1999-06-13 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/generic/strchr.c: Include <memcopy.h> and use reg_char
for character to search, to help the compiler.
* sysdeps/generic/strchrnul.c: Likewise.
* sysdeps/generic/memchr.c: Likewise.
* sysdeps/generic/memccpy.c: Likewise.
* sysdeps/generic/rawmemchr.c: Likewise. Fix comment.
1999-06-13 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/m68k/memchr.S: New file.
* sysdeps/m68k/rawmemchr.S: New file.
* sysdeps/m68k/strchr.S: New file.
* sysdeps/m68k/strchrnul.S: New file.
1999-06-13 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/powerpc/atomicity.h (exchange_and_add): Remove `volatile';
add `memory' clobber; optimise for constant `val'.
(atomic_add): Likewise.
(test_and_set): Remove `volatile'; add `memory' clobber; be more
like the original `test_and_set'.
(compare_and_swap): Remove `volatile'; add `memory' clobber;
optimise for constant `oldval'.
(always_swap): Remove `volatile'; add `memory' clobber.
1999-06-13 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/i386/fpu/bits/mathinline.h: Disable signbit* inline
functions for gcc <= 2.7.x.
1999-06-13 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsock.c (_hurd_socket_server): Fix fencepost error in last
change.
1999-06-13 Ulrich Drepper <drepper@cygnus.com>
* db2/Makefile (distribute): Remove files which do not exist
anymore.
* sysdeps/i386/fpu/bits/mathinline.h: Add __extension__ to signbit
definitions to calm down gcc.
* db2/db.h: Update from db 2.7.5.
* db2/db_185.h: Likewise.
* db2/db_int.h: Likewise.
* db2/btree/bt_compare.c: Likewise.
* db2/btree/bt_conv.c: Likewise.
* db2/btree/bt_curadj.c: Likewise.
* db2/btree/bt_cursor.c: Likewise.
* db2/btree/bt_delete.c: Likewise.
* db2/btree/bt_open.c: Likewise.
* db2/btree/bt_page.c: Likewise.
* db2/btree/bt_put.c: Likewise.
* db2/btree/bt_rec.c: Likewise.
* db2/btree/bt_recno.c: Likewise.
* db2/btree/bt_rsearch.c: Likewise.
* db2/btree/bt_search.c: Likewise.
* db2/btree/bt_split.c: Likewise.
* db2/btree/bt_stat.c: Likewise.
* db2/btree/btree_auto.c: Likewise.
* db2/common/db_appinit.c: Likewise.
* db2/common/db_apprec.c: Likewise.
* db2/common/db_err.c: Likewise.
* db2/common/db_region.c: Likewise.
* db2/common/db_salloc.c: Likewise.
* db2/db/db.c: Likewise.
* db2/db/db.src: Likewise.
* db2/db/db_am.c: Likewise.
* db2/db/db_auto.c: Likewise.
* db2/db/db_dispatch.c: Likewise.
* db2/db/db_dup.c: Likewise.
* db2/db/db_iface.c: Likewise.
* db2/db/db_join.c: Likewise.
* db2/db/db_overflow.c: Likewise.
* db2/db/db_pr.c: Likewise.
* db2/db/db_rec.c: Likewise.
* db2/db/db_ret.c: Likewise.
* db2/db185/db185.c: Likewise.
* db2/dbm/dbm.c: Likewise.
* db2/hash/hash.c: Likewise.
* db2/hash/hash_auto.c: Likewise.
* db2/hash/hash_dup.c: Likewise.
* db2/hash/hash_page.c: Likewise.
* db2/hash/hash_rec.c: Likewise.
* db2/hash/hash_stat.c: Likewise.
* db2/include/btree.h: Likewise.
* db2/include/btree_ext.h: Likewise.
* db2/include/clib_ext.h: Likewise.
* db2/include/common_ext.h: Likewise.
* db2/include/db_am.h: Likewise.
* db2/include/db_auto.h: Likewise.
* db2/include/db_cxx.h: Likewise.
* db2/include/db_ext.h: Likewise.
* db2/include/db_join.h: Likewise.
* db2/include/db_page.h: Likewise.
* db2/include/hash.h: Likewise.
* db2/include/hash_ext.h: Likewise.
* db2/include/lock.h: Likewise.
* db2/include/lock_ext.h: Likewise.
* db2/include/log.h: Likewise.
* db2/include/log_ext.h: Likewise.
* db2/include/mp.h: Likewise.
* db2/include/mp_ext.h: Likewise.
* db2/include/os.h: Likewise.
* db2/include/os_ext.h: Likewise.
* db2/include/os_func.h: Likewise.
* db2/include/txn.h: Likewise.
* db2/include/txn_auto.h: Likewise.
* db2/include/txn_ext.h: Likewise.
* db2/include/xa.h: Likewise.
* db2/include/xa_ext.h: Likewise.
* db2/lock/lock.c: Likewise.
* db2/lock/lock_conflict.c: Likewise.
* db2/lock/lock_deadlock.c: Likewise.
* db2/lock/lock_region.c: Likewise.
* db2/lock/lock_util.c: Likewise.
* db2/log/log.c: Likewise.
* db2/log/log_archive.c: Likewise.
* db2/log/log_auto.c: Likewise.
* db2/log/log_findckp.c: Likewise.
* db2/log/log_get.c: Likewise.
* db2/log/log_put.c: Likewise.
* db2/log/log_rec.c: Likewise.
* db2/log/log_register.c: Likewise.
* db2/mp/mp_bh.c: Likewise.
* db2/mp/mp_fget.c: Likewise.
* db2/mp/mp_fopen.c: Likewise.
* db2/mp/mp_fput.c: Likewise.
* db2/mp/mp_fset.c: Likewise.
* db2/mp/mp_open.c: Likewise.
* db2/mp/mp_pr.c: Likewise.
* db2/mp/mp_region.c: Likewise.
* db2/mp/mp_sync.c: Likewise.
* db2/mutex/mutex.c: Likewise.
* db2/mutex/uts4_cc.s: Likewise.
* db2/os/os_abs.c: Likewise.
* db2/os/os_alloc.c: Likewise.
* db2/os/os_config.c: Likewise.
* db2/os/os_dir.c: Likewise.
* db2/os/os_fid.c: Likewise.
* db2/os/os_fsync.c: Likewise.
* db2/os/os_map.c: Likewise.
* db2/os/os_oflags.c: Likewise.
* db2/os/os_open.c: Likewise.
* db2/os/os_rw.c: Likewise.
* db2/os/os_seek.c: Likewise.
* db2/os/os_sleep.c: Likewise.
* db2/os/os_spin.c: Likewise.
* db2/os/os_stat.c: Likewise.
* db2/os/os_tmpdir.c: Likewise.
* db2/os/os_unlink.c: Likewise.
* db2/progs/db_archive/db_archive.c: Likewise.
* db2/progs/db_checkpoint/db_checkpoint.c: Likewise.
* db2/progs/db_deadlock/db_deadlock.c: Likewise.
* db2/progs/db_dump/db_dump.c: Likewise.
* db2/progs/db_load/db_load.c: Likewise.
* db2/progs/db_printlog/README: Likewise.
* db2/progs/db_printlog/commit.awk: Likewise.
* db2/progs/db_printlog/count.awk: Likewise.
* db2/progs/db_printlog/db_printlog.c: Likewise.
* db2/progs/db_printlog/pgno.awk: Likewise.
* db2/progs/db_printlog/range.awk: Likewise.
* db2/progs/db_printlog/status.awk: Likewise.
* db2/progs/db_printlog/txn.awk: Likewise.
* db2/progs/db_recover/db_recover.c: Likewise.
* db2/progs/db_stat/db_stat.c: Likewise.
* db2/txn/txn.c: Likewise.
* db2/txn/txn.src: Likewise.
* db2/txn/txn_auto.c: Likewise.
* db2/txn/txn_rec.c: Likewise.
* db2/xa/xa.c: Likewise.
* db2/xa/xa_db.c: Likewise.
* db2/xa/xa_map.c: Likewise.
* db2/btree/bt_close.c: Removed.
* db2/db/db_thread.c: Likewise.
* db2/hash/hash_debug.c: Likewise.
* db2/include/db.h.src: Likewise.
* db2/include/db_int.h.src: Likewise.
* db2/include/os_jump.h: Likewise.
* db2/mutex/alpha.dec: Likewise.
* db2/mutex/alpha.gcc: Likewise.
* db2/mutex/parisc.hp: Likewise.
* db2/mutex/uts4.cc.s: Likewise.
* db2/Makefile: Add new routines, remove old for 2.7.5.
* db2/Versions: Add internal function names for the helper programs.
* db2/makedb.c: Update for new cursor callback.
* Versions.def: Define versions for libdb.
1999-06-13 Thorsten Kukuk <kukuk@suse.de>
* nscd/connections.c (nscd_run): Get user ID for all non-db services.
* nscd/Makefile (others, install-sbin): Add nscd_nischeck.
* nscd/nscd_nischeck.c: New file.
* nscd/nscd.init: Enable use of nscd_nischeck and secure tables.
1999-06-13 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/bits/socket.h: Add some missing
MSG_* flags from Linux 2.2.9.
1999-06-12 Mark Kettenis <kettenis@gnu.org>
* Makeconfig (static-start-installed-name): Set to
$(start-installed-name) if not defined.
(+link-static): Use $(static-start-installed-name) instead of
$(start-installed-name).
* sysdeps/mach/hurd/i386/Makefile (static-start-installed-name):
Set to crt0.o.
1999-06-12 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/fork.c (__fork): Make use of `insert_type' when
inserting a send right into the child instead of unconditionally
copying the send right.
1999-06-12 Ulrich Drepper <drepper@cygnus.com>
* locale/lc-time.c: Add free_mem function to free if necessary
statically allocated memory.
1999-06-10 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/libm-ieee754/s_truncl.c: Subtract exponent
bias from the raw exponent.
1999-06-11 Ulrich Drepper <drepper@cygnus.com>
* inet/arpa/tftp.h: Move attribute declaration in right position.
1999-06-11 Thorsten Kukuk <kukuk@suse.de>
* nscd/nscd.c: Add -S options for separate caching of data for
every user. So one user couldn't see the data another user
has gotten with his credentials.
* nscd/nscd.h: Add new prototypes.
* nscd/cache.c: Compare owner of cache entry if in secure mode.
* nscd/connections.c: Check on shutdown if caller really was root.
In secure mode get uid of caller.
* nscd/grpcache.c: Add support for new secure group mode.
* nscd/hstcache.c: Add support for new secure hosts mode.
* nscd/pwdcache.c: Add support for new secure passwd mode.
1999-06-11 Ulrich Drepper <drepper@cygnus.com>
* resolv/nss_dns/dns-host.c (getanswer_r): Correctly track usage
of user-provided buffer.
1999-06-11 Mark Kettenis <kettenis@gnu.org>
* hurd/hurdsock.c (max_domain): Initialize to `-1'.
(_hurd_socket_server): Fix off-by-one error in setting `max_domain'.
1999-06-10 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/printf-parse.h (parse_one_spec): Add support for a
and A format.
* shadow/fgetspent_r.c (__fgetspent_r): Set errno to ENOENT for
returning after last entry.
* pwd/fgetpwent_r.c (__fgetpwent_r): Likewise.
1999-06-09 Ulrich Drepper <drepper@cygnus.com>
* misc/sysexits.h: Remove advertising clause of copyright.
* resolv/getnetnamadr.c: Likewise.
* sysdeps/vax/bcopy.s: Likewise.
* sysdeps/vax/bzero.s: Likewise.
* sysdeps/vax/ffs.s: Likewise.
* sysdeps/vax/memchr.s: Likewise.
* sysdeps/vax/memcmp.s: Likewise.
* sysdeps/vax/memmove.s: Likewise.
* sysdeps/vax/memset.s: Likewise.
* sysdeps/vax/strcat.s: Likewise.
* sysdeps/vax/strchr.s: Likewise.
* sysdeps/vax/strcmp.s: Likewise.
* sysdeps/vax/strcpy.s: Likewise.
* sysdeps/vax/strcspn.s: Likewise.
* sysdeps/vax/strlen.s: Likewise.
* sysdeps/vax/strncat.s: Likewise.
* sysdeps/vax/strncmp.s: Likewise.
* sysdeps/vax/strncpy.s: Likewise.
* sysdeps/vax/strpbrk.s: Likewise.
* sysdeps/vax/strrchr.s: Likewise.
* sysdeps/vax/strsep.s: Likewise.
* sysdeps/vax/strspn.s: Likewise.
* sysdeps/vax/strstr.s: Likewise.
* libio/iofopncook.c: Adjust for renaming of structure elements.
* libio/libio.h: Define cookie functions with all the names.
* pwd/fgetpwent_r.c: Set errno in the correct way.
* shadow/fgetspent_r.c: Likewise.
* pwd/fgetpwent.c: Handle long lines correctly. Little
optimizations. Free static buffer when debugging memory handling.
* shadow/fgetspent.c: Likewise.
* grp/fgetgrent.c: Little optimization in loop.
1999-06-09 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* grp/tst_fgetgrent.c (write_group): Fix generation of long line
in a different way.
1999-06-09 Jakub Jelinek <jj@ultra.linux.cz>
* stdlib/longlong.h: gas changed sethi handling when without
%hi(). Fix assembly.
* sysdeps/generic/dl-cache.c (_dl_cache_lookup): Allow
port specific cache id checks.
* sysdeps/generic/dl-cache.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-cache.h: New file.
1999-06-08 Ulrich Drepper <drepper@cygnus.com>
* gmon/gmon.c: Remove advertising clause of copyright.
* gmon/mcount.c: Likewise.
* gmon/sys/gmon.h: Likewise.
* inet/arpa/ftp.h: Likewise.
* inet/arpa/telnet.h: Likewise.
* inet/arpa/tftp.h: Likewise.
* inet/inet_lnaof.c: Likewise.
* inet/inet_mkadr.c: Likewise.
* inet/inet_net.c: Likewise.
* inet/inet_netof.c: Likewise.
* inet/protocols/routed.h: Likewise.
* inet/protocols/rwhod.h: Likewise.
* inet/protocols/talkd.h: Likewise.
* inet/protocols/timed.h: Likewise.
* inet/rcmd.c: Likewise.
* inet/rexec.c: Likewise.
* inet/ruserpass.c: Likewise.
* io/fts.c: Likewise.
* io/fts.h: Likewise.
* login/login_tty.c: Likewise.
* misc/fstab.h: Likewise.
* misc/getttyent.c: Likewise.
* misc/getusershell.c: Likewise.
* misc/sys/queue.h: Likewise.
* misc/sys/syslog.h: Likewise.
* misc/syslog.c: Likewise.
* misc/ttyent.h: Likewise.
* misc/ttyslot.c: Likewise.
* resolv/arpa/nameser.h: Likewise.
* resolv/gethnamaddr.c: Likewise.
* resolv/herror.c: Likewise.
* resolv/inet_addr.c: Likewise.
* resolv/mapv4v6addr.h: Likewise.
* resolv/mapv4v6hostent.h: Likewise
* resolv/nss_dns/dns-host.c: Likewise.
* resolv/nss_dns/dns-network.c: Likewise.
* resolv/res_comp.c: Likewise.
* resolv/res_data.c: Likewise.
* resolv/res_debug.c: Likewise.
* resolv/res_init.c: Likewise.
* resolv/res_mkquery.c: Likewise.
* resolv/res_query.c: Likewise.
* resolv/res_send.c: Likewise.
* resolv/resolv.h: Likewise.
* sysdeps/generic/div.c: Likewise.
* sysdeps/generic/netinet/ip.h: Likewise.
* sysdeps/generic/netinet/tcp.h: Likewise.
* sysdeps/generic/paths.h: Likewise.
* sysdeps/generic/prof-freq.c: Likewise.
* sysdeps/generic/sys/ttydefaults.h: Likewise.
* sysdeps/gnu/netinet/ip_icmp.h: Likewise.
* sysdeps/gnu/netinet/tcp.h: Likewise.
* sysdeps/ieee754/support.c: Likewise.
* sysdeps/mach/hurd/sys/param.h: Likewise.
* sysdeps/unix/bsd/bsd4.4/bits/errno.h: Likewise.
* sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
* sysdeps/unix/bsd/sun/sunos4/sys/ttydefaults.h: Likewise.
* sysdeps/unix/bsd/sys/reboot.h: Likewise.
* sysdeps/unix/sysv/linux/netinet/if_ether.h: Likewise.
* sysdeps/unix/sysv/linux/netinet/igmp.h: Likewise.
* sysdeps/unix/sysv/linux/netinet/ip.h: Likewise.
* sysdeps/unix/sysv/linux/paths.h: Likewise.
* sysdeps/unix/sysv/linux/sys/quota.h: Likewise.
* sysdeps/unix/sysv/linux/sys/ttydefaults.h: Likewise.
* sysdeps/vax/DEFS.h: Likewise.
* termios/sys/ttychars.h: Likewise.
* misc/daemon.c: Likewise. Call fork.
* grp/fgetgrent.c (buffer): Make file local variable.
(free_mem): New function. Call for malloc debugging.
* grp/tst_fgetgrent.c (write_users): Correctly generate long line.
1999-06-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* grp/Makefile: Add rules for tst_fgetgrent.
* grp/tst_fgetgrent.c: Rewritten to read only one file.
* grp/tst_fgetgrent.sh: New file.
1999-06-08 Ulrich Drepper <drepper@cygnus.com>
* grp/Makefile (tests): Add tst_fgetgrent.
* grp/tst_fgetgrent.c: New file.
Patches by Andreas Jaeger <aj@arthur.rhein-neckar.de>.
1999-06-07 Roland McGrath <roland@baalperazim.frob.com>
* db2/os/os_oflags.c (__db_oflags): Fix checking of O_ACCMODE bits to
be POSIX compliant. Prior definition was broken for Hurd.
Reported by Mark Kettenis <kettenis@gnu.org>.
1999-06-08 Ulrich Drepper <drepper@cygnus.com>
* ctype/ctype.h: Protect __tobody code by __extension__.
1999-06-07 Ulrich Drepper <drepper@cygnus.com>
* grp/fgetgrent.c (fgetgrent): Remember position of stream before
reading and reset in case the buffer was too small.
* grp/fgetgrent_r.c (__fgetgrent_r): Set errno to ENOENT in case
of EOF.
1999-06-07 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/if_index.c: Use SIGIOCGIFINDEX and fix
another SIOGIFNAME typo.
1999-06-07 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-lookup.c: Remove duplicated assert.h inclusion.
* sysdeps/generic/printf_fphex.c (__printf_fphex): Optimize a little
bit.
1999-06-05 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/generic/printf_fphex.c (__printf_fphex): Don't ignore
the precision if the mantissa is zero.
1999-06-05 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/lang.texi (Floating Point Parameters): GCC already
supports long double for a long time.
1999-06-05 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* math/libm-test.c (j0_test, j1_test, jn_test, y0_test, y1_test,
yn_test): Increase some epsilons.
1999-06-07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/sys/sysmacros.h (makedev): Handle signed
parameters.
1999-06-06 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/kernel-features.h: Define
__ASSUME_SIOCGIFNAME for kernel >= 2.1.50.
* sysdeps/unix/sysv/linux/if_index.c: Correct typo (SIOGIFNAME ->
SIOCGIFNAME) and use __ASSUME_SIOCGIFNAME.
* sysdeps/libm-ieee754/w_j0.c: Remove __ from symbol definitions.
* sysdeps/libm-ieee754/w_j0f.c: Likewise.
* sysdeps/libm-ieee754/w_j0l.c: Likewise.
* sysdeps/libm-ieee754/w_j1.c: Likewise.
* sysdeps/libm-ieee754/w_j1f.c: Likewise.
* sysdeps/libm-ieee754/w_j1l.c: Likewise.
* sysdeps/libm-ieee754/w_jn.c: Likewise.
* sysdeps/libm-ieee754/w_jnf.c: Likewise.
* sysdeps/libm-ieee754/w_jnl.c: Likewise.
* stdio-common/vfprintf.c: Correct typos.
* math/libm-test.c (jn_test): Adjust delta.
(y1_test): Likewise.
(yn_test): Likewise.
* elf/do-lookup.h: It should never happen that if we expect a versioned
symbol from a file the file has no version table. This should have
been checked in dl-version.c.
* elf/dl-lookup.c: Include assert.h.
* sysdeps/unix/sysv/linux/i386/sigaction.c: Correct restorer
function handling.
* sysdeps/unix/sysv/linux/i386/sigaction.c (SA_RESTORER): New #define.
1999-06-06 Andi Kleen <ak@muc.de>
* sysdeps/unix/sysv/linux/i386/sigaction.c (__sigaction): Set
SA_RESTORER flag.
1999-06-04 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* math/libm-test.c (yn_test): Change one delta.
(jn_test): Likewise.
(j1_test): Likewise.
(y0_test): Likewise.
1999-06-06 Ulrich Drepper <drepper@cygnus.com>
* malloc/malloc.c: Introduce local variable __libc_getpagesize to
avoid multiple calls to getpagesize() which might be a syscall.
1999-06-06 Philip Blundell <philb@gnu.org>
* stdio-common/tstscanf.c (main): Test the half-word format "%hd".
1999-06-06 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/install.texi (Running make install): Correct typo in
dynamic linker invocation.
1999-06-05 Philip Blundell <philb@gnu.org>
* sysdeps/arm/dl-machine.h (elf_machine_load_address): Fix
problems with GOT addressing.
1999-06-05 Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>
* malloc/malloc.c (check_action): Change into bitmap so that both
diagnostic and abort can be requested by setting it to 3.
(mALLOC_SET_STATe): Disable malloc checking if necessary.
1999-06-03 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Few changes for HPUX.
* scripts/config.guess: Update from latest version.
* scripts/config.sub: Likewise.
1999-06-03 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* Makerules: Set LC_ALL explicitly to archieve correct sorting of
map files. Closes PR libc/1147.
1999-06-03 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* math/libm-test.c (main): Add new test functions.
(jn_test): New tests.
(j1_test): Add some more tests.
(j0_test): Add some more tests.
(y0_test): Add some more tests.
(y1_test): Add some more tests.
1999-06-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/libm-ieee754/e_j0.c (__ieee754_y0): Fix array indices.
Patch by mhagger@dera.gov.uk [PR libc/1145].
* math/libm-test.c (y1_test): New tests.
(y0_test): Likewise.
(j1_test): Likewise.
(j0_test): Likewise.
(main): Added new tests.
1999-06-02 Jakub Jelinek <jj@ultra.linux.cz>
* stdlib/longlong.h: Define UDIV_TIME on sparc64.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: New file.
1999-06-02 David S. Miller <davem@redhat.com>
* nscd/nscd_gethst_r.c (nscd_gethst_r): Align the h_addr_list
pointers properly.
1999-06-02 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/i386/sigaction.c: Read kernel-features.h
and elide compatibility code if possible.
1999-06-01 Ulrich Drepper <drepper@cygnus.com>
* manual/llio.texi: Remove menu entry for removed section.
1999-05-29 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/sigaction.c: Fix typo and avoid unused
variables.
1999-06-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_DDCMP): Add it
(from Linux 2.3.4).
1999-05-30 Ulrich Drepper <drepper@cygnus.com>
* inet/netinet/in.h: Mark ntoh* and hton* as constant functions.
1999-05-30 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/stdio.texi: Fix some typos.
1999-05-27 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* malloc/malloc.h: Properly handle future GCC versions.
1999-05-27 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/configure.in: Change version checks to
use AC_EGREP_CPP. Change sed pattern to not use alternation. Fix
text of error message.
* aclocal.m4 (GLIBC_PROVIDES): Define AC_LANG to `C'.
1999-05-29 Ulrich Drepper <drepper@cygnus.com>
* manual/filesys.texi: Extend (f)truncate documentation.
* manual/llio.texi: Remove duplicate (f)truncate definition.
1999-05-29 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/stdio.texi (Formatted Output Functions): Mention
semantics of snprintf in glibc 2.0.
Reported by Ben Pfaff <pfaffben@msu.edu>.
1999-05-29 Ulrich Drepper <drepper@cygnus.com>
* include/features.h (__GLIBC_MINOR__): Bump to 2.
1999-05-27 Ulrich Drepper <drepper@cygnus.com>
* math/libm-test.c: Adjust a few more deltas for the poor ARM
FPU emulator.
1999-05-27 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* configure.in: Fix typo.
1999-05-27 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/socket.texi (Host Names): Remove statement that h_errno
needs to be declared since this isn't true anymore.
Closes PR libc/1138.
1999-05-26 Ulrich Drepper <drepper@cygnus.com>
* config.h.in: Add __LINUX_KERNEL_VERSION.
* configure.in: Recognize --enable-kernel.
* sysdeps/unix/sysv/linux/configure.in: Check for correct kernel
headers if --enable-kernel is given and set __LINUX_KERNEL_VERSION
appropriately.
* sysdeps/unix/sysv/linux/init-first.c: If minimal kernel version is
given perform runtime test.
* sysdeps/unix/sysv/linux/kernel-features.h: New file.
* sysdeps/unix/sysv/linux/getcwd.c: Elide compatibility code if
minimal supported kernel is known to have the feature.
* sysdeps/unix/sysv/linux/poll.c: Likewise.
* sysdeps/unix/sysv/linux/pread.c: Likewise.
* sysdeps/unix/sysv/linux/pread64.c: Likewise.
* sysdeps/unix/sysv/linux/pwrite.c: Likewise.
* sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
* sysdeps/unix/sysv/linux/seteuid.c: Likewise.
* sysdeps/unix/sysv/linux/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
* sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
* sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
* sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
* sysdeps/unix/sysv/linux/i386/pread.c: Likewise.
* sysdeps/unix/sysv/linux/i386/pread64.c: Likewise.
* sysdeps/unix/sysv/linux/i386/pwrite.c: Likewise.
* sysdeps/unix/sysv/linux/i386/pwrite64.c: Likewise.
* sysdeps/unix/sysv/linux/sysctl.c: Add __sysctl alias.
1999-05-25 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/posix/getcwd.c (__getcwd): Fix potential memory leaks.
1999-05-26 Jakub Jelinek <jj@ultra.linux.cz>
* stdlib/longlong.h (add_ssaaaa, sub_ddmmss, umul_ppmm):
Optimized sparc64 routines.
1999-05-25 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfprintf.c (vfprintf): Don't handle long numbers if
they are the same as ints.
* stdio-common/vfscanf.c (_IO_vfscanf): Likewise.
* version.h (VERSION): Bump to 2.1.90.
(RELEASE): Mark as development.
* stdio-common/vfprintf.c (vfprintf): Don't implement special
handling for long long if it is the same as long.
* stdio-common/vfscanf.c (_IO_vfscanf): Likewise.
* stdlib/strtol.c: Moved to ...
* sysdeps/generic/strtol.c: ...here.
* stdlib/strtoul.c: Moved to ...
* sysdeps/generic/strtoul.c: ...here.
* stdlib/strtoll.c: Moved to ...
* sysdeps/generic/strtoll.c: ...here.
* stdlib/strtoull.c: Moved to ...
* sysdeps/generic/strtoull.c: ...here.
* stdlib/strtol_l.c: Moved to ...
* sysdeps/generic/strtol_l.c: ...here.
* stdlib/strtoul_l.c: Moved to ...
* sysdeps/generic/strtoul_l.c: ...here.
* stdlib/strtoll_l.c: Moved to ...
* sysdeps/generic/strtoll_l.c: ...here.
* stdlib/strtoull_l.c: Moved to ...
* sysdeps/generic/strtoull_l.c: ...here.
* sysdeps/wordsize-64/strtol.c: New file.
* sysdeps/wordsize-64/strtoul.c: New file.
* sysdeps/wordsize-64/strtoll.c: New file.
* sysdeps/wordsize-64/strtoull.c: New file.
* sysdeps/wordsize-64/strtol_l.c: New file.
* sysdeps/wordsize-64/strtoul_l.c: New file.
* sysdeps/wordsize-64/strtoll_l.c: New file.
* sysdeps/wordsize-64/strtoull_l.c: New file.
* wcsmbs/wcstol.c: Moved to ...
* sysdeps/generic/wcstol.c: ...here.
* wcsmbs/wcstoul.c: Moved to ...
* sysdeps/generic/wcstoul.c: ...here.
* wcsmbs/wcstoll.c: Moved to ...
* sysdeps/generic/wcstoll.c: ...here.
* wcsmbs/wcstoull.c: Moved to ...
* sysdeps/generic/wcstoull.c: ...here.
* wcsmbs/wcstol_l.c: Moved to ...
* sysdeps/generic/wcstol_l.c: ...here.
* wcsmbs/wcstoul_l.c: Moved to ...
* sysdeps/generic/wcstoul_l.c: ...here.
* wcsmbs/wcstoll_l.c: Moved to ...
* sysdeps/generic/wcstoll_l.c: ...here.
* wcsmbs/wcstoull_l.c: Moved to ...
* sysdeps/generic/wcstoull_l.c: ...here.
* sysdeps/wordsize-64/wcstol.c: New file.
* sysdeps/wordsize-64/wcstoul.c: New file.
* sysdeps/wordsize-64/wcstoll.c: New file.
* sysdeps/wordsize-64/wcstoull.c: New file.
* sysdeps/wordsize-64/wcstol_l.c: New file.
* sysdeps/wordsize-64/wcstoul_l.c: New file.
* sysdeps/wordsize-64/wcstoll_l.c: New file.
* sysdeps/wordsize-64/wcstoull_l.c: New file.
1999-05-24 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/bits/wordsize.h: New file.
* sysdeps/sparc/fpu/bits/fenv.h: New file.
* sysdeps/sparc/fpu/fpu_control.h: New file.
* sysdeps/sparc/gmp-mparam.h: New file.
* sysdeps/sparc/sparc32/fpu/bits/fenv.h: Remove.
* sysdeps/sparc/sparc32/fpu/fpu_control.h: Remove.
* sysdeps/sparc/sparc64/bits/wordsize.h: Remove.
* sysdeps/sparc/sparc64/fpu/bits/fenv.h: Remove.
* sysdeps/sparc/sparc64/fpu/fpu_control.h: Remove.
* sysdeps/sparc/sparc64/gmp-mparam.h: Remove.
* sysdeps/unix/sysv/linux/sparc/bits/setjmp.h: New file.
* sysdeps/unix/sysv/linux/sparc/bits/types.h: New file.
* sysdeps/unix/sysv/linux/sparc/bits/statfs.h: New file.
* sysdeps/unix/sysv/linux/sparc/sys/ucontext.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/sys/ucontext.h: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/setjmp.h: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/statfs.h: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/sys/ucontext.h: Remove.
1999-05-24 Ulrich Drepper <drepper@cygnus.com>
* login/openpty.c (openpty): Make sure pty does not because
controlling TTY.
* ctype/ctype.h: Don't optimize toupper/tolower for C++.
1999-05-23 Roland McGrath <roland@baalperazim.frob.com>
* hurd/set-host.c (_hurd_set_host_config): Use mode 0644, not 0600.
Do proper error return.
1999-05-23 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* malloc/malloc.h: Add __THROW for __MALLOC_P to synch with usage
of __P in the rest of glibc; define __MALLOC_PMT and use it.
Reported by Stephan Kulow <coolo@kde.org>.
1999-05-23 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/alpha/fpu/bits/fenv.h: Pretty print.
* sysdeps/sparc/sparc64/fpu/bits/fenv.h: Remove unneeded #if.
1999-05-22 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/m68k/fpu/bits/fenv.h (fenv_t): Prepend __ to member
names to protect from user's macro namespace.
* sysdeps/arm/fpu/bits/fenv.h (fenv_t): Likewise.
* sysdeps/generic/bits/fenv.h (fexcept_t, fenv_t): Likewise.
* sysdeps/i386/fpu/bits/fenv.h (fenv_t): Likewise.
* sysdeps/mips/bits/fenv.h (fenv_t): Likewise.
* sysdeps/m68k/fpu/feholdexcpt.c, sysdeps/m68k/fpu/fesetenv.c:
Adapted.
* sysdeps/arm/fpu/fegetenv.c, sysdeps/arm/fpu/feholdexcpt.c,
sysdeps/arm/fpu/fesetenv.c: Likewise.
* sysdeps/i386/fpu/fclrexcpt.c, sysdeps/i386/fpu/feholdexcpt.c,
sysdeps/i386/fpu/fesetenv.c, sysdeps/i386/fpu/fraiseexcpt.c,
sysdeps/i386/fpu/fsetexcptflg.c: Likewise.
* sysdeps/mips/fesetenv.c: Likewise.
1999-05-22 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/generic/bits/sigstack.h (enum SS_*): Remove trailing comma.
1999-05-20 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Recognize and allow gcc 2.95.
1999-05-19 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/generic/bits/elfclass.h: Version common to
wordsize-32 and wordsize-64.
* sysdeps/generic/bits/environments.h: Ditto.
* sysdeps/generic/stdint.h: Ditto.
* sysdeps/generic/inttypes.h: Ditto.
* sysdeps/generic/bits/wordsize.h: New file.
* stdlib/Makefile: Add bits/wordsize.h to headers.
* sysdeps/sparc/sparc64/bits/wordsize.h: New file.
* sysdeps/sparc/sparc64/fpu/bits/fenv.h: Allow the same exported
headers to be used for 32bit and 64bit ABI compilations.
* sysdeps/sparc/sparc64/fpu/fpu_control.h: Ditto.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/setjmp.h: Ditto.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h: Ditto.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/statfs.h: Ditto.
* sysdeps/unix/sysv/linux/sparc/sparc64/sys/ucontext.h: Ditto.
* sysdeps/wordsize-64/bits/elfclass.h: Remove.
* sysdeps/wordsize-64/bits/environments.h: Remove.
* sysdeps/wordsize-64/stdint.h: Remove.
* sysdeps/wordsize-64/inttypes.h: Remove.
* sysdeps/wordsize-64/bits/wordsize.h: New file.
* sysdeps/wordsize-32/bits/elfclass.h: Remove.
* sysdeps/wordsize-32/bits/environments.h: Remove.
* sysdeps/wordsize-32/stdint.h: Remove.
* sysdeps/wordsize-32/inttypes.h: Remove.
* sysdeps/wordsize-32/bits/wordsize.h: New file.
1999-05-19 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/sparc64/memcpy.S (__align_cpy_4, __align_cpy_8,
__align_cpy_16): New functions.
(__align_cpy_2, __align_cpy_1): New aliases to memcpy.
* sysdeps/sparc/sparc32/Versions: New file.
* sysdeps/sparc/sparc64/Versions: New file.
* sysdeps/sparc/Versions: Remove.
1999-05-19 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/unix/sysv/linux/configure.in:
On sparc64-*-linux*, set slibdir to /lib64 if prefix
is /usr, plus set libdir to ${exec_prefix}/lib64.
* sysdeps/unix/sysv/linux/configure: Regenerated.
* config.make.in: Propagate libdir settings from configure
to the Makefiles.
* shlib-versions: sparc64-*-linux* dynamic linker is
/lib64/ld-linux.so.2.
1999-05-18 Thorsten Kukuk <kukuk@suse.de>
* nis/nis_lookup.c (nis_lookup): If we run out of memory, close
RPC connection.
1999-05-18 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/sparc64/rawmemchr.S: New file.
* sysdeps/sparc/sparc32/sparcv9/rawmemchr.S: New file.
* sysdeps/sparc/sparc64/memchr.S: Fix if the second argument
contains garbage in bits 8-63.
* sysdeps/sparc/sparc64/memset.S: Ditto.
* sysdeps/sparc/sparc64/strchr.S: Ditto.
1999-05-18 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/wordsize-64/stdint.h (INTPTR_MAX): Add missing ).
1999-05-17 David S. Miller <davem@redhat.com>
* sysdeps/sparc/sparc32/atomicity.h: New file.
* sysdeps/sparc/sparc32/sparcv9/atomicity.h: New file.
* sysdeps/sparc/sparc64/atomicity.h: New file.
* sysdeps/sparc/sparc32/sparcv9/Makefile: Add -Wa,-Av9a to
sysdep-CFLAGS.
1999-05-18 Richard Henderson <rth@twiddle.net>
* sysdeps/alpha/memchr.S: Zap high byte of length. Reschedule.
1999-05-04 Zack Weinberg <zack@rabi.phys.columbia.edu>
* argp/argp.h, assert/assert.h, misc/sys/cdefs.h,
posix/sys/types.h: Handle the case of __GNUC__=3,
__GNUC_MINOR__=(anything).
1999-05-18 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/i386/i486/bits/string.h (rawmemchr): Remove unneccessary
if _FORCE_INLINES.
1999-05-17 Ulrich Drepper <drepper@cygnus.com>
* elf/Makefile (distribute): Remove dl-origin.h.
Add dl-dst.h and gen-trusted-dirs.awk.
1999-05-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/i386/i486/Versions: New file with inline functions from
sysdeps/i386/i486/bits/string.h for now.
* sysdeps/i386/Versions: Add inline functions from
sysdeps/i386/bits/string.h.
* string/Versions: Add inline functions from <bits/string2.h>.
* string/Makefile (routines): Add string-inlines.
* string/string-inlines.c: New file, used for implementation of
extern inline functions.
* sysdeps/i386/i486/bits/string.h: Use _FORCE_INLINES to generate
non inlined versions of functions.
* string/bits/string2.h: Likewise.
* sysdeps/i386/bits/string.h: Likewise.
1999-05-17 Ulrich Drepper <drepper@cygnus.com>
* inet/arpa/tftp.h: Add second packed attribute.
1999-05-16 Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>
* malloc/malloc.c: Cleanup to bring in line with released
stand-alone version `ptmalloc'. Update some comments.
(internal_function): Move fallback definition so that the source
compiles outside of libc, and use it in more places.
(malloc_atfork): Fix when malloc_check is in use.
1999-05-16 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdlib/tst-strtod.c: Fix typo.
1999-05-16 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dl-close.c (_dl_close): Add cast to avoid warning about
const incorrectness.
1999-05-16 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/generic/bits/termios.h (CRTSCTS): New macro.
1999-05-16 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/etc.rpc: Add portmapper, rstat_svc and pcnfs.
* sunrpc/key_call.c: Fix memory leak, close file handle.
* nis/nis_creategroup.c: Use malloc instead of calloc,
set ctime and mtime.
* nis/nis_subr.c: Check for realloc result.
* nis/nis_file.c: Fix memory leak.
* nis/nis_table.c: Pretty print.
* nis/nis_getservlist.c: Likewise.
* nis/nis_ismember.c: Likewise.
* nis/nis_lookup.c: Likewise.
* nis/nis_ping.c: Likewise.
* nis/nis_removemember.c: Likewise.
* nis/nis_util.c: Likewise, check calloc result.
1999-05-16 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/unix/sysv/linux/sys/socketvar.h: Moved to ...
* sysdeps/generic/sys/socketvar.h: ... here.
* sysdeps/unix/sysv/linux/netinet/in_systm.h: Moved to ...
* sysdeps/generic/netinet/in_systm.h: ... here.
* sysdeps/unix/sysv/linux/Dist: Remove netinet/in_systm.h,
sys/socketvar.h.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Likewise.
* inet/Makefile (headers): Add netinet/in_systm.h here.
* socket/Makefile (headers): Add sys/socketvar.h here.
1999-05-15 Ulrich Drepper <drepper@cygnus.com>
* stdlib/strtol.c: Optimize inner loop of long long versions.
* sysdeps/gnu/utmpx.h: Add needed type definitions according to
Unix98. Add forward declaration of struct utmp.
1999-05-14 Ulrich Drepper <drepper@cygnus.com>
* nis/nis_getservlist.c (nis_getservlist): Use malloc instead of
calloc.
* nis/nis_checkpoint.c (nis_checkpoint): Fix memory leaks.
* nis/nis_addmember.c (nis_addmember): Fix memory leak. Test
memory allocation results.
1999-05-14 Mark Kettenis <kettenis@gnu.org>
* sysdeps/generic/getutmp.c: Include <string.h>
(getutmp): Rewrite to only copy those members that are really
present in `struct utmp'.
* sysdeps/generic/getutmpx.c: Likewise.
1999-05-14 Ulrich Drepper <drepper@cygnus.com>
* nss/getXXbyYY.c: Add free_mem function which disposes all
statically allocated memory when debugging.
* nss/getXXent.c: Likewise.
* nss/nsswitch.c: Likewise.
1999-05-13 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/gnu/getutmpx.c: New file.
* sysdeps/gnu/getutmp.c: New file.
1999-05-13 H.J. Lu <hjl@gnu.org>
* login/Versions (getutmpx): Added to GLIBC_2.1.1.
(getutmp): Likewise.
* sysdeps/gnu/Makefile (sysdep_routines): Add getutmp and
getutmpx for login.
* sysdeps/gnu/utmpx.h (getutmp): Added.
(getutmpx): Likewise.
* sysdeps/generic/getutmp.c: New file.
* sysdeps/generic/getutmpx.c: New file.
1999-05-13 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* glibcbug.in (BUGGLIBC): Change address to
libc-alpha@sourceware.cygnus.com.
1999-05-12 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* resolv/arpa/nameser.h: Add C++ protectors.
1999-05-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* iconvdata/gconv-modules: Fix alias for CP1255. Reported by
Elad Tsur <eladts@post.tau.ac.il>.
1999-05-11 Ulrich Drepper <drepper@cygnus.com>
* elf/Versions (ld.so) [GLIBC_2.1.1]: Add _dl_lazy.
* elf/dl-open.c (_dl_open_worker): Only relocate newly loaded objects
lazily if LD_BIND_NOW is not set.
* elf/dl-support.c (_dl_lazy): New variable.
(non_dynamic_init): Set _dl_lazy according to LD_BIND_NOW envvar.
* elf/rtld.c (_dl_lazy): new global variable.
( dl_main): Remove lazy, replace it by _dl_lazy.
1999-05-06 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* locale/setlocale.c (new_composite_name): Check also whether the
first category name differs.
1999-05-11 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/ftime.c: Use the bsd implementation, not
the generic one.
1999-05-11 Philip Blundell <pb@nexus.co.uk>
* sysdeps/generic/bits/socket.h (struct sockaddr_storage): New
structure; storage suitable for any socket address.
* sysdeps/unix/sysv/linux/bits/socket.h (struct sockaddr_storage):
Likewise.
* sysdeps/unix/sysv/linux/mips/bits/socket.h (struct
sockaddr_storage): Likewise.
* inet/netinet/in.h: Use ULONG_MAX not ~0 to test for a 64-bit
platform.
1999-05-10 Ulrich Drepper <drepper@cygnus.com>
* hesiod/Versions: Change _nss_hesiod_getpwuid and
_nss_hesiod_getgrgid to _nss_hesiod_getpwuid_r and
_nss_hesiod_getgrgid_r respectively. Fixes pr libc/1115.
1999-05-09 Mark Kettenis <kettenis@gnu.org>
* hurd/get-host.c (_hurd_get_host_config): Return an empty value
if the file is empty.
1999-05-07 Ulrich Drepper <drepper@cygnus.com>
* elf/do-lookup.h: Fix typo in comment.
* sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs): Set f_frsize to
f_bsize to help some broken programs.
* stdio-common/tst-printf.c: Add test case for last _itoa problem.
* stdio-common/vfprintf.c: Fix typo.
1999-05-06 Ulrich Drepper <drepper@cygnus.com>
* elf/link.h (struct link_map): New field l_phdr_allocated.
* elf/dl-load.c (_dl_map_object_from_fd): Don't depend on having
the program header being part of any loaded segment. If it is not
allocate memory and set l_phdr_allocated flag.
* elf/dl-close.c (_dl_close): Free l_phdr if necessary.
* nss/digits_dots.c: Correct return value interpretation of
inet_ntoa. Fix PR libc/1109.
1999-05-06 Zack Weinberg <zack@rabi.columbia.edu>
* sysdeps/sparc/sparc32/sparcv9/Dist: New file.
1999-05-06 Thorsten Kukuk <kukuk@suse.de>
* stdlib/fpioconst.c (__tens): Export also for 64bit platforms.
* stdlib/fpioconst.c: Move #endif before end of struct.
1999-05-05 Ulrich Drepper <drepper@cygnus.com>
* Versions.def (ld.so): Add GLIBC_2.1.1.
* elf/Makefile (routines): Add dl-origin.
(tests): Add origtest. Add dependencies for the program.
* elf/Versions (ld.so) [GLIBC_2.1.1]: Add _dl_origin_path,
_dl_platformlen, _dl_dst_count and _dl_dst_substitute.
* elf/dl-deps.c (expand_dst): New macro. Expand DSTs in filename.
(_dl_map_object_deps): Use expand_dst to expand DSTs in DT_NEEDED,
DT_AUXILIARY, and DT_FILTER filenames.
* elf/dl-load.c (expand_dynamic_string_token): Explode into
two functions and three macros.
(_dl_dst_count, _dl_dst_substitute): New functions.
* elf/dl-dst.h: New file.
* elf/dl-open.c (_dl_open): Take extra parameter with address of
caller. Pass address in args structure.
(dl_open_worker): Recognize and expand DSTs in filename.
* elf/ldsodefs.h (_dl_open): Adapt prototype.
* elf/dlopen.c (dlopen_doit): Pass caller address to _dl_open.
(__dlopen_check): Pass caller address to dlopen_doit in args.
* elf/dlopendoit.c: Likewise.
* iconv/gconv_dl.c: Adapt call of _dl_open.
* nss/nsswitch.c: Likewise.
* elf/origtest.c: New file.
* sysdeps/generic/dl-origin.h: Moved to...
* sysdeps/generic/dl-origin.c: ...here.
* sysdeps/unix/sysv/linux/dl-origin.h: Moved to...
* sysdeps/unix/sysv/linux/dl-origin.c: ...here.
* stdio-common/_itoa.c (_itoa): Fix special 32bit platform case
with specific bases and only few bits set in second word.
* timezone/Makefile (install-others): Create target directory
before creating tzfiles.
1999-05-05 Thorsten Kukuk <kukuk@suse.de>
* nis/nis_file.c (readColdStartFile): Allocate memory only after
the file is opened successfully.
* nis/nis_table.c: Fix some memory leaks.
1999-05-04 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-load.c (expand_dynamic_string_token): Rewrite to loose st
variable.
* elf/dl-load.c (expand_dynamic_string_token): Recognize { }
around DST. Correctly ignore ORIGIN IN SUID binaries.
1999-05-03 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/strtok_r.c: Use rawmemchr instead of strchr.
* sysdeps/generic/strtok.c: Likewise.
* string/tester.c: Add test of rawmemchr.
* sysdeps/i386/bits/select.h (__FD_ZERO): Remove memory output
specification. It's not necessary.
* elf/Makefile (trusted-dirs.st): Use gen-trusted-dirs.awk.
* elf/gen-trusted-dirs.awk: New file.
* elf/dl-load.c (systems_dirs): Moved into file scope. Initialize
from SYSTEM_DIRS macro.
(system_dirs_len): New variable. Contains lengths of system_dirs
strings.
(fillin_rpath): Rewrite for systems_dirs being a simple string.
Improve string comparisons. Change parameter trusted to be a flag.
Change all callers.
(_dt_init_paths): Improve using new format for system_dirs.
* elf/dl-load.c (expand_dynamic_string_token): Don't expand
$ORIGIN for SUID binaries.
* sysdeps/unix/sysv/linux/arm/Dist: Add sigrestorer.S.
1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sunrpc/Makefile: Generate dependencies for all flavors of
librpcsvc objects.
(rpcgen-cmd): Pass -Y flag here and remove it from the macro
invocations.
1999-05-02 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dlopenold.c: Move #if down after includes to get
dependencies right.
1999-05-01 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/generic/bzero.c: Undefine __bzero.
1999-05-02 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/netax25/ax25.h: Update from kernel header.
* sysdeps/unix/sysv/linux/netrom/netrom.h: Likewise.
* sysdeps/unix/sysv/linux/netrose/rose.h: Likewise.
Patch by Craig Small <csmall@scooter.eye-net.com.au>.
* sysdeps/posix/getaddrinfo.c (gaih_inet_serv): Change fourth
parameter to struct gaih_servtuple *. Adapt appropriately.
(gaih_inet): Use alloca to allocate room for gaih_inet_serv calls.
This fixes a memory leak.
Reported by Mikolaj J. Habryn <dichro-glibcbug@rcpt.to>.
* sysdeps/unix/sysv/linux/sys/procfs.h: Remove greg_t, gregset_t,
and fpregset_t definition. They are defined in ucontext.h.
1999-04-14 Scott Bambrough <scottb@netwinder.org>
* sysdeps/unix/sysv/linux/arm/net/ethernet.h: struct ether_addr
and struct ether_header must be packed on the ARM. The default
alignment constraints add padding to the end of the structures.
1999-04-14 Scott Bambrough <scottb@netwinder.org>
* inet/arpa/tftp.h: struct tftphdr must be packed on the ARM. The
default alignment constraints add padding to the end of the
structure and between members.
1999-05-02 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Use
_dl_cache_libcmp instead of strcmp.
* sysdeps/generic/glob.c (glob_in_dir): It's no error if opendir
fails on a file.
Reported by Sergei Ivanov <svivanov@pdmi.ras.ru> [PR libc/1032].
1998-03-30 Joel Klecker <espy@debian.org>
* sysdeps/unix/sysv/linux/sparc/sparc32/Makefile
(sysdep-others,install-bin): Add lddlibc4.
1999-05-02 H.J. Lu <hjl@gnu.org>
* timezone/zic.c (dolink): Remove the symlink destination first.
* catgets/open_catalog.c (__open_catalog): Set catalog->status
to "nonexisting" if failed to open the file.
1999-05-01 Ulrich Drepper <drepper@cygnus.com>
* string/bits/string2.h: Only use __builtin_memset for egcs 1.1 and
gcc3.
* sysdeps/i386/i486/bits/string.h: Don't use and define __memset_gg.
Prevent warnings from multiplication with 0x01010101 by another cast.
1999-04-30 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* string/bits/string2.h (memset): Revert to previous version if
unaligned writes are not available.
1999-04-30 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/i386/i486/bits/string.h (__memset_gc): Help generating
better code in presence of the asm.
1999-04-30 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdlib/fmtmsg.c (keywords): Increase array size for faster
indexing.
* locale/localeinfo.h (_nl_category_names): Increase array element
size for faster indexing.
* locale/setlocale.c (_nl_category_names): Adjusted.
1999-04-30 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* iconv/gconv_conf.c (add_alias): Remove wrong cast.
1999-05-01 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/m68k/stackinfo.h: New file.
1999-04-30 Ulrich Drepper <drepper@cygnus.com>
* string/tester.c (test_strchrnul): New function.
(test_memset): Test one more special case.
* sysdeps/i386/strchrnul.S: Fix bugs which lead to wrong results in
25% of all cases.
* sysdeps/i386/i486/bits/string.h: Replace __uintXX_t types with
base types.
* string/bits/string2.h: Fix bugs I introduced in last change.
* sysdeps/i386/i486/bits/string.h (memcmp): Don't introduce partial
register stall.
Extend memset optimization.
Correct i686 version of memchr.
1999-04-30 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/i386/bzero.c: Add #undef __bzero.
* hurd/hurdinit.c (_hurd_new_proc_init): Don't do initial SIGTRAP if
EXEC_SIGTRAP was set in the incoming exec flags--that indicates the
exec server simulated a SIGTRAP before we even started up, so gdb is
already happy.
1999-04-30 Ulrich Drepper <drepper@cygnus.com>
* nss/digits_dots.c: Always initialize not_ok.
1999-04-30 09:02 -0400 Zack Weinberg <zack@rabi.columbia.edu>
* string/bits/string2.h (memset): Avoid arithmetic overflow at
compile time, which produces obnoxious warnings. If GCCv2 is
in use, map __bzero to __builtin_memset to enable that
optimization.
1999-04-29 Ulrich Drepper <drepper@cygnus.com>
* string/bits/string2.h: Add more memset optimizations.
* resolv/inet_addr.c (inet_aton): Optimize switch statement away.
* resolv/inet_pton.c (inet_pton4): Little optimizations.
(inet_pton6): Likewise.
* nss/getXXbyYY_r.c: Include assert.h.
* nss/getXXbyYY.c: Likewise.
1999-04-29 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* termios/tcgetsid.c (tcgetsid): Rename variable to
tiocgsid_does_not_work.
1999-04-29 Ulrich Drepper <drepper@cygnus.com>
* inet/getnameinfo.c (nrl_domainname): Fix last patch.
1999-04-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* nss/digits_dots.c: Use inet_aton to parse IPv4 numbers.
This allows e.g. gethostbyname to accept "10.1234".
Reported by Alexander V. Lukyanov <lav@long.yar.ru> [PR libc/1096].
* nss/test-netdb.c (test_hosts): Add test for gethostbyname and
non quad IPv4 numbers.
1999-04-29 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* resolv/res_hconf.c (_res_hconf_init): Remove unused variable end.
1999-04-28 Ulrich Drepper <drepper@cygnus.com>
* argp/argp-ba.c (argp_program_bug_address): Don't initialize with 0.
* argp/argp-parse.c (_argp_hang): Likewise.
* argp/argp-pv.c (argp_program_version): Likewise.
* argp/argp-pvh.c (argp_program_version_hook): Likewise.
* inet/ether_hton.c (ether_hton, startp): Likewise.
* inet/ether_ntoh.c (ether_ntoh, startp): Likewise.
* inet/getnetgrent_r.c (setup, startp): Likewise.
* intl/loadmsgcat.c (_nl_msg_cat_cntr): Likewise.
* intl/localealias.c (string_space, string_space_act, string_space_max,
nmap, maxmap): Likewise.
* libio/iopopen.c (proc_file_chain): Likewise.
* libio/oldiopopen.c (old_proc_file_chain): Likewise.
* locale/lc-collate.c (__collate_table, __collate_extra,
__collate_element_hash, __collate_element_strings,
__collate_element_values): Likewise.
* malloc/mcheck.c (mcheck_used): Likewise.
* malloc/mtrace.c (added_atexit_handler): Likewise.
* malloc/set-freeres.c (already_called): Likewise.
* misc/getpass.c (getpass) [buf, bufsize]: Likewise.
* misc/syslog.c (LogStat, LogTag): Likewise.
* nss/XXX-lookup.c (DATABASE_NAME_SYMBOL): Likewise.
* nss/getXXbyYY_r.c (startp): Likewise.
* posix/getopt.c (optarg, __getopt_initialized): Likewise.
* posix/regex.c (init_syntax_once) [done]: Likewise.
(debug): Likewise.
* string/strfry.c (init): Likewise.
* sunrpc/svc_run.c (svc_top): Likewise.
* posix/euidaccess.c (have_ids): Likewise.
* sysdeps/unix/sysv/linux/poll.c (must_emulate): Likewise.
* sysdeps/unix/sysv/linux/ttyname.c (__ttyname, namelen): Likewise.
* time/getdate.c (getdate_err): Likewise.
* time/tzfile.c (transitions, type_idxs, types, zone_names, leaps):
Likewise.
* time/tzset.c (old_tz, is_initialized): Likewise.
* inet/getnameinfo.c (nrl_domainname): Rewrite to allow initialization
of static data with zero.
* signal/allocrtsig.c (init): Likewise.
* string/Makefile (routines): Add strchrnul.
* string/Versions [GLIBC_2.1.1]: Add strchrnul.
* string/string.c: Add strchrnul prototype.
* include/string.h: Add __strchrnul prototype.
* sysdeps/generic/strchrnul.c: New file.
* sysdeps/i386/strchrnul.S: New file.
* sysdeps/i386/bits/string.c: Add strchrnul optimization.
* sysdeps/i386/i486/bits/string.c: Likewise.
* argp/argp-help.c (argp_args_usage): Use __strchrnul.
* inet/ether_line.c (ether_line): Likewise.
* nscd/nscd_conf.c (nscd_parse_file): Likewise.
* nss/nsswitch.c (nss_parse_file): Likewise.
* posix/execvp.c (execvp): Likewise.
* posix/fnmatch.c (internal_fnmatch): Likewise.
* resolv/res_hconf.c (_res_hconv_init): Likewise.
* resolv/res_init.c (res_init): Likewise.
* stdlib/fmtmsg.c (init): Likewise.
* stdlib/getsubopt.c (getsubopt): Likewise.
* catgets/catgets.c (catopen): Only allocate one memory block.
(catclose): Only one free call necessary.
* catgets/open_catalog.c (__open_catalog): Simplify handling of
file descriptor.
* ctype/ctype-extn.c: Make __toascii_l and __isascii_l alias instead
of real functions. Simplify _tolower and _toupper.
* grp/initgroups.c (compat_call): Remove unnecessary use of pointer
variable.
* iconv/gconv.h (struct gconv_info): Change data element from pointer
to array of size 0.
* iconv/gconv_open.c (__gconv_open): Allocate structures accordingly.
* iconv/gconv_close.c (__gconv_close): Don't free data.
* iconv/gconv_conf.c (add_alias): Avoid searching in tree twice to
insert new alias.
* iconv/gconv_db.c (add_derivation): More efficient copying. Check
for error while inserting in tree.
* include/time.h: Pretty print.
* inet/ruserpass.c: Rewrite use of toktab to avoid string pointers
in table and lots of relocations.
* posix/regex.c (regerror): Rewrite use of re_error_msgid to avoid
string pointers in table and lots of relocations.
* intl/finddomain.c: Remove definition of strchr macro.
* io/ftw.c (nftw_arr, ftw_arr): Make const.
* locale/loadlocale.c (_nl_load_locale): Optimize string copying.
* locale/localeinfo.h (_nl_category_names): Change into an array with
fixed width char string elements.
* locale/setlocale.c (_nl_category_names): Likewise.
(_nl_current): Make global.
* locale/nl_langinfo.c (nldata): Removed. Use _nl_current now.
* malloc/Makefile (distribute): Add stackinfo.h.
* sysdeps/generic/stackinfo.h: New file.
* sysdeps/i386/stackinfo.h: New file.
* posix/execl.c: Use stackinfo.h in optimizing alloca use.
* posix/execle.c: Likewise.
* posix/execlp.c: Likewise.
* nis/nis_table.c (__create_ib_request): Always use realloc.
* posix/execvp.c (execute): Rename to script_execute and keep only
code to execute using shell.
(execvp): Call execv directly and only fall back on script_execute.
* resolv/inet_net_pton.c (inet_net_pton_ipv4): Remove digits define
and always use xdigits instead.
* resolv/res_init.c (res_init): Use rawmemchr instead of strchr
where appropriate.
* stdlib/fpioconst.h (__tens): New declaration.
(struct mp_power): Remove array, add arrayoff element.
* stdlib/fpioconst.c: Replace definitions of _ten_p* arrays by one
__tens array and add in _fpioconst_pow10 offsets into __tens.
* stdio-common/printf_fp.c: Rewrite to use new __tens array.
* stdlib/strtod.c: Likewise.
* stdlib/a64l.c (a64l_table): Avoid unnecessary elements.
* stdlib/exit.c: Rewrite to use __exit_funcs being as sign for end
of the list.
* stdlib/atexit.c (__exit_funcs): Don't initialize.
* stdlib/fmtmsg.c (keywords): Make name element fixed width array.
* sunrpc/clnt_perr.c: Rewrite clnt_sperrno and auth_errmsg to use
a single and an array with offsets.
* sunrpc/des_soft.c (partab): Make it const.
* sunrpc/key_call.c (trytimeout, tottimeout): Make const.
(__key_encryptsession_pk_LOCAL): Don't initialize with 0.
(__key_decryptsession_pk_LOCAL): Likewise.
(__key_gendes_LOCAL): Likewise.
(MESSENGER): Mark const.
(key_call_private_main): Don't initialize with 0.
(use_keyenvoy): Don't initialize with 0.
(key_call): Rewrite to reverse logic of use_doors variable.
* sunrpc/netname.c (OPSYS): Define as array, not pointer.
(startp): Don't initialize with zero.
* sunrpc/openchild.c (_openchild): Make first argument const.
* sunrpc/pmap_rmt.c (timeout): Mark const.
* sunrpc/xcrypt.c (hex): Likewise.
* sysdeps/unix/sysv/linux/getcwd.c: Rewrite to allow omitting
initialization of global variables.
* sysdeps/unix/sysv/linux/getpt.c: Likewise.
* sysdeps/unix/sysv/linux/if_index.c: Likewise.
* termios/tcgetsid.c: Likewise.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h (x86_cap_flags): Change
fxsr to osfxsr.
* time/tzfile.c (__tzfile_read): Rewrite to allocate only one memory
block. Add function to free memory if wanted.
* time/tzset.c (tzset_internal): Pass extra argument to __tzfile_read.
* wcsmbs/wcsmbsload.c (to_wc, to_mb): Correct initializers.
* wcsmbs/wmemset.c: Little code optimization.
1999-04-23 Paul Eggert <eggert@twinsun.com>
* stdlib/strtoull.c: Surround strong_alias and weak_alias with
ifdef _LIBC.
1999-04-28 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/getdents.c (__getdirentries): Remove
implementation and just always fail with ENOSYS. This entry point is
obsolete. Add link warning to that effect.
1999-04-27 Roland McGrath <roland@baalperazim.frob.com>
* hurd/get-host.c: Include <hurd/lookup.h>.
1999-04-28 Ulrich Drepper <drepper@cygnus.com>
* malloc/malloc.c (rEALLOc): Only free memory for size 0 if oldmem
is != NULL.
1999-04-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* malloc/malloc.c (REALLOC_ZERO_BYTES_FREES): Define it to follow
ISO C9x and Unix98.
1999-04-28 Ulrich Drepper <drepper@cygnus.com>
* libio/iofopncook.c (_IO_cookie_seek): Correct return value.
Patch by Peter Miller <millerp@canb.auug.org.au>.
1999-04-27 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/pmap_clnt.c: Add own get_myaddress function, which
prefers loopback device.
1999-04-28 Ulrich Drepper <drepper@cygnus.com>
* posix/fnmatch.c (internal_fnmatch): Finish incomplete
no_leading_period change.
* posix/testfnm.c: More test cases.
1999-04-27 Ulrich Drepper <drepper@cygnus.com>
* include/dirent.h: Remove __getdirentries declaration, add __getdents
and __getdents64.
* sysdeps/unix/readdir.c: Use __getdents, not __getdirentries.
* sysdeps/unix/readdir_r.c: Likewise.
* sysdeps/unix/sysv/linux/readdir64.c: Likewise.
* sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
* sysdeps/unix/sysv/linux/getdents.c: Define __getdents, not
__getdirentries. Remove fourth argument.
* sysdeps/unix/sysv/linux/getdirentries.c: New file.
* sysdeps/unix/sysv/linux/getdirentries64.c: New file.
* sysdeps/unix/sysv/linux/Makefile [subdir=dirent] (sysdep_routines):
Add getdirentries and getdirentries64.
* sysdeps/unix/sysv/linux/Dist: Add getdirentries and getdirentries64.
* posix/fnmatch.c (internal_fnmatch): Correctly reset string
pointer in case of an invalid [[: expression.
* posix/testfnm.c: Add more test cases.
1999-04-27 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdexec.c (_hurd_exec): If SIGKILL present in _hurdsig_traced
set, pass EXEC_SIGTRAP flag in exec RPC.
1999-04-26 Ulrich Drepper <drepper@cygnus.com>
* posix/fnmatch.c (internal_fnmatch): Renamed from fnmatch. Take
extra parameter. Fix several more bugs involving wildcard and
ranges.
(fnmatch): New function. Call internal_fnmatch.
* posix/testfnm.c: More test cases.
1999-04-03 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/install.texi (Configuring and compiling): Explain that
files are changed in the source directory.
Closes PR libc/981.
(Configuring and compiling): Explain situation with PARALLELMFLAGS
in the source directory.
1999-04-24 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* locale/programs/ld-ctype.c: Spelling fixes.
(ctype_finish): Fix argument of error message format.
* locale/programs/ld-messages.c: Spelling fixes.
* locale/programs/ld-monetary.c: Spelling fixes.
* locale/programs/ld-time.c (time_finish): Make sure that name and
format of era_entries are adjacent.
(time_output): Reduce the size of the io vector.
1999-04-25 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/filesys.texi (Attribute Meanings): Move a misplaced
paragraph.
1999-04-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* locale/programs/ld-collate.c (collate_output): Convert
undefined_offset to an array index. Fix computation of other
endian extra table.
1999-04-26 Roland McGrath <roland@baalperazim.frob.com>
* hurd/get-host.c (_hurd_get_host_config): If ENOENT opening file,
return success with empty value.
1999-04-26 Ulrich Drepper <drepper@cygnus.com>
* posix/fnmatch.c: Include string.h also for glibc.
(fnmatch, case '?'): Optimize if cascades a bit.
(fnmatch, case '*'): Correct handling if FNM_PATHNAME is set.
* posix/testfnm.c: Add test cases for * with FNM_PATHNAME errors.
1999-04-24 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv_builtin.h: Add definitions for UTF16 builtins.
* iconv/gconv_int.h: Declare UTF16 functions.
* iconv/gconv_simple.c: Add UTF16 conversion functions.
1999-04-20 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* posix/wordexp.c (parse_param): Fix type of offset to allow it to
be used correctly as parameter for parse_dollars/parse_tilde.
1999-04-19 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/conf.texi (Utility Limits): Remove duplicate description
of BC_DIM_MAX.
1999-04-19 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Correctly initialize
outbufend for dst==NULL.
1999-04-18 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/mbsrtowcs.c (__mbsrtowcs): Correctly initialize outbufend
for dst==NULL.
Fixes PR libc/1084.
* socket/sys/socket.h: Define SHUT_RD, SHUT_WR, and SHUT_RDWR.
Fixes PR libc/1083.
1999-04-18 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/Makefile: Remove special handling of bootparam.x,
add rpcsvc/bootparam.h to headers.
* sunrpc/rpcsvc/bootparam.h: New, for backward compatibility.
* sunrpc/rpcsvc/bootparam.x: Renamed to...
* sunrpc/rpcsvc/bootparam_prot.x: ...this.
1999-04-18 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/bsd/poll.c (__poll): Add more compatiblity code to
detect and handle invalid descriptors.
1999-04-17 Thorsten Kukuk <kukuk@suse.de>
* timezone/zic.c (dolink): Append complete path not only filename
to ../ list.
1999-04-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* iconvdata/ibm874.c (TABLES, CHARSET_NAME): Follow name change.
1999-04-17 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/gconv-modules: Rename CP874 to IBM874.
* iconvdata/Makefile: Likewise.
* iconvdata/cp874.h: Removed.
* iconvdata/cp874.c: Renamed to...
* iconvdata/ibm874.c: ...this.
1999-04-16 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/bits/types.h: Correct
signed/unsigned-ness of blkcnt and fsblkcnt.
* sysdeps/unix/sysv/linux/alpha/bits/types.h: Likewise.
* sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
* sysdeps/unix/sysv/linux/bits/socket.h: Add SOL_PACKET, SOL_ATM,
SOL_AAL, and SOL_IRDA.
1999-04-15 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/fstatvfs.c: Set f_frsize to zero. Don't
include "linux_fsinfo.h".
Based on a patch by H.J. Lu <hjl@gnu.org>.
1999-04-16 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/rpc_cout.c (print_header): Use int32_t pointer, not long.
1999-04-16 Ulrich Drepper <drepper@cygnus.com>
* nscd/cache.c (prune_cache): Only disable file checking for
future if the file does not exist.
Update file_mtime if cache was flushed.
1999-04-15 David S. Miller <davem@redhat.com>
* sysdeps/sparc/sparc32/strcat.S: Avoid using register g6.
* sysdeps/sparc/sparc32/strcpy.S: Likewise.
1999-04-15 Scott Bambrough <scottb@netwinder.org>
* sysdeps/unix/sysv/linux/arm/sigaction.c: Fix typo in preventing
compilation of file.
1999-04-15 Ulrich Drepper <drepper@cygnus.com>
* Versions.def: Add GLIBC_2.1.1 to libpthread.
* iconvdata/Makefile (modules): Add KOI8-U.
(distribute): Add koi8-u.c.
(gen-8bit-gap-modules): Add koi8-u.
* iconvdata/gconv-modules: Add KOI8-U entries.
* iconvdata/koi8-u.c: New file.
1999-04-13 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/auth_des.c: 64bit fixes, security fixes.
* sunrpc/auth_none.c: Pretty print.
* sunrpc/auth_unix.c: Likewise.
* sunrpc/authdes_prot.c: Likewise.
* sunrpc/authuxprot.c: Likewise.
* sunrpc/bindrsvprt.c: Likewise.
* sunrpc/clnt_gen.c: Likewise.
* sunrpc/rpc/xdr.h: Likewise.
* sunrpc/rpc/auth_des.h: Add rpc_timeval struct.
* sunrpc/rpc_cmsg.c: Don't use *long pointers.
* sunrpc/rtime.c: Use new rpc_timeval.
* sunrpc/svc_authux.c: Don't use *long pointers.
* sunrpc/svcauth_des.c: Likewise + security fixes.
* sunrpc/xdr_mem.c: Don't use *long pointers.
* sunrpc/xdr_rec.c: Likewise.
* sunrpc/xdr_sizeof.c: Likewise.
* sunrpc/xdr_stdio.c: Likewise.
1999-04-15 Ulrich Drepper <drepper@cygnus.com>
* sunrpc/clnt_udp.c (clntudp_call): Move initialization of anyup
so that it is redone for each sending.
1999-04-15 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sunrpc/clnt_udp.c (clntudp_call): Initialize anyup.
1999-04-15 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv_db.c (__gconv_find_transform): If conversion is
known to not exist don't try to load shared objects.
Patch by Petr Vandrovec Ing. VTEI <VANDROVE@vc.cvut.cz>.
* nscd/cache.c (prune_cache): The table might not be unused. In
this case do nothing.
* catgets/gencat.c (read_input_file): Don't drop white spaces
between number/identifier and string.
Patch by Dima Barsky <dima@pwd.hp.com>.
If no white space at all follows number/identifier remove existing
message with the number/identifier.
1999-04-14 H.J. Lu <hjl@gnu.org>
* sunrpc/clnt_udp.c (is_network_up): New function.
(clntudp_call): Call is_network_up () to check if any network
interface is up in case of timeout.
1999-04-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* wctype/test_wcfuncs.c: New file, tests towlower and towupper.
* wctype/Makefile (tests): Add test_wcfuncs.
1999-04-14 Jakub Jelinek <jj@ultra.linux.cz>
* scripts/config.sub: Allow sparcv[6789]-* and sparcv8plus{,a}-*
architectures.
* sysdeps/sparc/sparc32/sparcv8/Makefile: Use sysdep-CFLAGS
instead of CFLAGS.
* sysdeps/sparc/sparc32/sparcv8/Makefile: Use sysdep-CFLAGS
instead of CFLAGS. For gnulib and string directories use
-Wa,-Av9a gcc ASFLAGS.
* sysdeps/sparc/sparc32/sparcv9/memmove.c: New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: New file.
* shlib-versions: Handle sparcv[6789]-* and sparcv8plus{,a}-*
the same way as sparc-*.
1999-04-14 Ulrich Drepper <drepper@cygnus.com>
* locale/programs/locfile.c (locfile_read): Fix typo.
Patch by Kaoru Fukui <k_fukui@highway.ne.jp>.
1999-04-14 Scott Bambrough <scottb@netwinder.org>
* sysdeps/unix/sysv/linux/arm/socket.S: Socket calls could not be
restarted after being interrupted by a signal. The parameters on
the stack were corrupted by the signal handler.
* sysdeps/unix/sysv/linux/arm/mmap.S: mmap calls could not be
restarted after being interrupted by a signal. The parameters on
the stack were corrupted by the signal handler.
1999-04-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* wctype/wcfuncs.c (towlower): Use __ctype_tolower.
Reported by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>
1999-04-12 Tim Waugh <tim@cyberelk.demon.co.uk>
* posix/wordexp-test.c: In field-splitting test cases where
subshells were involved, unset IFS first: some shells (ash) use
IFS even when no expansion is performed.
1999-04-13 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* libio/obprintf.c (_IO_obstack_overflow): Put the write end at
the real end of the chunk, not some random point inbetween.
(_IO_obstack_xsputn): Likewise. Actually copy the data into the
obstack when growing. Use fast version of obstack_blank when
shrinking.
(struct _IO_obstack_file): Use _IO_FILE_plus instead of explicitly
allocating the vtable pointer.
(_IO_obstack_vprintf): Adjust for above change and avoid
unnecessary casts. Use fast version of obstack_blank when
shrinking.
Fixes PR libc/1075.
1999-04-12 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/gconv-modules: Fix typo. Add UJIS alias.
Reported by GOTO Masanori <gotom@cs.titech.ac.jp>.
1999-04-11 Tim Waugh <tim@cyberelk.demon.co.uk>
* posix/wordexp.c (wordexp): Fix a leak when an invalid character
is seen, as well as fixing semantics. Don't reset the word count
to zero when an invalid character is seen, but leave it as it was
(this makes a difference with WRDE_APPEND).
* posix/wordexp-test.c: More test cases.
* posix/wordexp.c (parse_param): In words like ${var#pattern},
always expand pattern when it is needed. Also, handle quoting in
pattern properly.
1999-04-12 Philip Blundell <philb@gnu.org>
* elf/elf.h: Update ARM definitions to match current gas2.
* sysdeps/arm/bits/endian.h: Support big endian operation.
* sysdeps/unix/sysv/linux/arm/ioperm.c (_outw, _outb, _outl):
Don't bother range checking the port number.
* sysdeps/unix/sysv/linux/arm/vfork.S: New file.
* sysdeps/unix/sysv/linux/arm/sysdep.h (INLINE_SYSCALL): Include
the syscall name in assembler output for ease of debugging.
* sysdeps/unix/sysv/linux/arm/sigaction.c: Don't rely on undefined
compiler behaviour.
* sysdeps/unix/sysv/linux/arm/sigrestorer.S: New file.
* sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = signal]
(sysdep_routines): Add sigrestorer.
* string/tester.c (test_strcpy): Add new tests for unaligned
arguments.
* sysdeps/arm/bits/string.h: Delete inline implementations of
strcpy and stpcpy.
1999-04-11 Ulrich Drepper <drepper@cygnus.com>
* libio/Makefile (CPPFLAGS-.o): Don't define IO_DEBUG.
1999-04-10 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/Dist: Add clk_tck.c.
1999-04-10 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/Makefile (modules): Add TIS-620.
(distribute): Add tis-620.c.
(gen-8bit-gap-modules): tis-620.
* iconvdata/tis-620.c: New file.
* iconvdata/gconv-modules: Add TIS-620 entries.
* iconvdata/asmo_449.c: Correct comment.
1999-04-10 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/install.texi (Configuring and compiling): Comment out
description of --disable-static since this doesn't work currently
(see change by Ulrich Drepper on 1998-12-07 for configure.in).
1999-04-10 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Rewrite to
use binary search.
Based on a patch by Jakub Jelinek <jj@sunsite.ms.mff.cuni.cz>.
1999-04-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* scripts/test-installation.pl (installation_problem): Skip
libnss1_* libraries from glibc-compat add-on.
1999-04-07 H.J. Lu <hjl@gnu.org>
* io/Versions (__dup2, __pipe): Added to GLIBC_2.0 for
libstdc++ 2.7.2.
* posix/Versions (__waitpid): Likewise.
1999-04-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/install.texi (Reporting Bugs): Add section about reported
bugs and correct email address of glibcbug script.
1999-04-01 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/Versions: Add new xdr functions to GLIBC_2.1.1
* sunrpc/xdr.c: Add xdr_hyper, xdr_u_hyper, xdr_longlong_t and
xdr_u_longlong_t. Based on patch from Dan Shechter
<damageboy@isdn.net.il>.
* sunrpc/xdr_intXX_t.c: Implement xdr_int64_t, xdr_uint64_t
* sunrpc/rpc/xdr.h: Add prototypes for new xdr functions.
* nis/nis_lookup.c (nis_lookup): Don't overwrite RPC error code.
1999-04-07 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/getdents.c (__getdirentries): Return
directly if getdents returns with error set.
1999-04-05 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* locale/langinfo.h (THOUSEP): Rename second occurence of
THOUSANDS_SEP to THOUSEP.
Reported by Roman Belenov <roman@nstl.nnov.ru>.
1999-04-05 Roland McGrath <roland@baalperazim.frob.com>
* hurd/STATUS: File removed. Moved items that are still relevant into
TODO list in hurd source.
1999-03-26 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/bits/time.h: New file.
* sysdeps/mach/hurd/getrusage.c: New file.
* sysdeps/mach/hurd/clk_tck.c: New file.
* sysdeps/mach/hurd/Versions (libc) [GLIBC_2.1.1]: Add __libc_clk_tck.
* sysdeps/mach/hurd/Makefile [$(subdir) = posix]
(sysdep_routines): Add clk_tck.
* sysdeps/mach/hurd/times.c: Removed, since getrusage is now
implemented.
1999-04-02 Ulrich Drepper <drepper@cygnus.com>
* misc/syslog.c (closelog_internal): Do not reset LogTag here.
(closelog): But instead here.
Patch by Alan Curry <pacman@cqc.com> [PR libc/1061].
1999-04-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* elf/Makefile (CFLAGS-multiload.c): Change to allow building in
the source directory. Fixes PR libc/1059.
1999-04-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/ttyname.c (ttyname): Terminate the string.
* sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
1999-04-01 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/TESTS: Add ISO-8859-14 and ISO-8859-15.
* iconvdata/testdata/ISO-8859-14: New file.
* iconvdata/testdata/ISO-8859-14..UTF8: New file.
* iconvdata/testdata/ISO-8859-15: New file.
* iconvdata/testdata/ISO-8859-15..UTF8: New file.
1999-03-31 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/testdata/CP1258: New file.
* iconvdata/testdata/CP1258..UTF8: New file.
* iconvdata/TESTS: Add CP1258 entry.
* iconvdata/cp874.h (to_ucs4): Add Euro sign.
* timezone/africa: Update from tzdata1999d.
* timezone/europe: Likewise.
* timezone/northamerica: Likewise.
1999-03-31 Mark Kettenis <kettenis@gnu.org>
* login/programs/pt_chown.c (main): Save effective user ID before
dropping priviliges and use this to check if the program is
properly installed.
1999-03-31 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/testdata/CP1254: Update for charmap changes.
* iconvdata/testdata/CP1254..UTF8: Likewise.
* iconvdata/testdata/CP1255: Likewise.
* iconvdata/testdata/CP1255..UTF8: Likewise.
* iconvdata/testdata/CP1256: Likewise.
* iconvdata/testdata/CP1256..UTF8: Likewise.
* iconvdata/testdata/CP1257: Likewise.
* iconvdata/testdata/CP1257..UTF8: Likewise.
* iconvdata/Makefile (distribute): Remove cp1258.h.
(gen-8bit-gap-modules): Add cp1258.
* iconvdata/cp1258.h: Removed.
1999-03-30 Ulrich Drepper <drepper@cygnus.com>
* timezone/tst-timezone.c (tests): Add more cases.
(check_tzvars): Mark errors clearer.
(main): Likewise.
1999-03-30 20:59 -0500 Zack Weinberg <zack@rabi.phys.columbia.edu>
* login/programs/pt_chown.c: Drop privileges if invoked with
arguments. Don't close the master pty.
1999-03-30 Ulrich Drepper <drepper@cygnus.com>
* time/tzfile.c (__tzfile_read): Process transitions from the rear.
Minor optimization.
1999-03-29 Ulrich Drepper <drepper@cygnus.com>
* elf/rtld.c (process_envvars): Do not automatically prevent lazy
relocation for SUID binaries.
1999-03-29 Paul Eggert <eggert@twinsun.com>
* libio/iopopen.c (_IO_new_proc_open): Don't modify proc_file_chain
while in child process.
1999-03-29 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/sparc/sparc32/sparcv8/Makefile: New file.
* sysdeps/sparc/sparc32/sparcv8/rem.S: Delay after write %y.
* sysdeps/sparc/sparc32/sparcv8/sdiv.S: Likewise.
* sysdeps/sparc/sparc32/sparcv8/udiv.S: Likewise.
* sysdeps/sparc/sparc32/sparcv8/urem.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/bcopy.c: New file.
* sysdeps/sparc/sparc32/sparcv9/bzero.c: New file.
* sysdeps/sparc/sparc32/sparcv9/memchr.S: New file.
* sysdeps/sparc/sparc32/sparcv9/memcmp.S: New file.
* sysdeps/sparc/sparc32/sparcv9/memcpy.S: New file.
* sysdeps/sparc/sparc32/sparcv9/memset.S: New file.
* sysdeps/sparc/sparc32/sparcv9/stpcpy.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strcat.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strchr.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strcmp.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strcpy.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strcspn.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strlen.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strncpy.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strpbrk.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strrchr.c: New file.
* sysdeps/sparc/sparc32/sparcv9/strspn.S: New file.
* sysdeps/sparc/sparc32/sparcv9/dotmul.S: New file.
* sysdeps/sparc/sparc32/sparcv9/rem.S: New file.
* sysdeps/sparc/sparc32/sparcv9/sdiv.S: New file.
* sysdeps/sparc/sparc32/sparcv9/udiv.S: New file.
* sysdeps/sparc/sparc32/sparcv9/umul.S: New file.
* sysdeps/sparc/sparc32/sparcv9/urem.S: New file.
* sysdeps/sparc/sparc32/sparcv9/Makefile: New file.
* sysdeps/sparc/sparc32/sparcv9/stpncpy.S: New file.
* sysdeps/sparc/sparc32/sparcv9/strncmp.S: New file.
* sysdeps/sparc/sparc32/bcopy.c: New file.
* sysdeps/sparc/sparc32/bzero.c: New file.
* sysdeps/sparc/sparc32/memchr.S: New file.
* sysdeps/sparc/sparc32/memcpy.S: New file.
* sysdeps/sparc/sparc32/memmove.c: New file.
* sysdeps/sparc/sparc32/memset.S: New file.
* sysdeps/sparc/sparc32/stpcpy.S: New file.
* sysdeps/sparc/sparc32/strchr.S: New file.
* sysdeps/sparc/sparc32/strrchr.c: New file.
* sysdeps/sparc/sparc32/strcpy.S: New file.
* sysdeps/sparc/sparc32/strlen.S: New file.
* sysdeps/sparc/sparc32/strcat.S: New file.
* sysdeps/sparc/sparc32/strcmp.S: New file.
* sysdeps/sparc/sparc64/bcopy.c: New file.
* sysdeps/sparc/sparc64/bzero.c: New file.
* sysdeps/sparc/sparc64/memchr.S: New file.
* sysdeps/sparc/sparc64/memcmp.S: New file.
* sysdeps/sparc/sparc64/memcpy.S: New file.
* sysdeps/sparc/sparc64/memset.S: New file.
* sysdeps/sparc/sparc64/stpcpy.S: New file.
* sysdeps/sparc/sparc64/strcat.S: New file.
* sysdeps/sparc/sparc64/strchr.S: New file.
* sysdeps/sparc/sparc64/strcmp.S: New file.
* sysdeps/sparc/sparc64/strcpy.S: New file.
* sysdeps/sparc/sparc64/strcspn.S: New file.
* sysdeps/sparc/sparc64/strlen.S: New file.
* sysdeps/sparc/sparc64/strncpy.S: New file.
* sysdeps/sparc/sparc64/strpbrk.S: New file.
* sysdeps/sparc/sparc64/strrchr.c: New file.
* sysdeps/sparc/sparc64/strspn.S: New file.
* sysdeps/sparc/sparc64/stpncpy.S: New file.
* sysdeps/sparc/sparc64/strncmp.S: New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (ASFLAGS-.os):
Append -fPIC, don't replace.
* configure.in: Recognize sparcv8plus / sparcv9.
1999-03-27 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* malloc/obstack.h (obstack_free): Explicitly convert __obj to
char * to avoid C++ warning.
Patch by yasushi@cs.washington.edu [PR libc/1035].
1999-03-29 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/filesys.texi (Temporary Files): mktemp and mkstemp are
declared in stdlib.h, correct return value of mkstemp.
Reported by Andries Brouwer <Andries.Brouwer@cwi.nl>.
* sysdeps/unix/sysv/linux/net/if_arp.h (ARPHDRD_FC*): New defines
from Linux 2.2.5.
1999-03-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* misc/regexp.h (compile): Cast some pointers to (char *) to avoid
C++ warning.
* ctype/ctype.h (tolower, toupper): Add __THROW declaration to
inline functions. Closes PR libc/1049.
1999-03-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* timezone/README: Update from tzdata1999c and tzcode1999c.
* timezone/africa: Update from tzdata1999c.
* timezone/antarctica: Likewise.
* timezone/asia: Likewise.
* timezone/australasia: Likewise.
* timezone/europe: Likewise.
* timezone/northamerica: Likewise.
* timezone/southamerica: Likewise.
* timezone/zone.tab: Likewise.
* timezone/zic.c: Update from tzcode1999c.
1999-03-26 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* Makerules: Add $(common-objpfx)Versions.all to common-generated
outside of ifndef avoid-generated.
* libio/oldiofdopen.c (_IO_old_fdopen): Bring over recent changes
in iofdopen.c.
* libio/oldiofopen.c (_IO_old_fopen): Bring over recent changes in
iofopen.c.
* libio/oldiofclose.c (_IO_old_fclose): Bring over recent changes
in iofclose.c.
* libio/oldfileops.c (_IO_old_file_underflow, _IO_old_file_sync,
_IO_old_file_seekoff): Bring over recent changes in fileops.c.
1999-03-26 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/Makefile: Only install libc_p.a linker script
if we build the profiled library.
1999-03-26 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* math/Makefile (gmp-objs): Add inlines. Reported by Andreas
Jaeger <aj@arthur.rhein-neckar.de>
1999-03-25 Roland McGrath <roland@yaumatei.ai.mit.edu>
* sysdeps/mach/hurd/i386/Makefile [$(subdir) = csu]
(CFLAGS-initfini.s): New variable, add -DWEAK_GMON_START.
This does for Hurd/i386 what the 1998-09-08 change did for Linux/i386.
1999-03-24 Roland McGrath <roland@baalperazim.frob.com>
* Makeconfig (sysd-sorted): Use $(..) on rhs of patsubst, so this rule
works properly in subdirs.
1999-03-23 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/Makefile: Undo last change.
[$(subdir) = mach] (lib-noranlib): Depend on libmachuser-link.so.
[$(subdir) = hurd] (lib-noranlib): Depend on libhurduser-link.so.
* mach/Machrules (+preinit, +postinit, +interp,
LDFLAGS-$(interface.so)): Variables removed. Interface libraries get
linked just like other shared libraries.
(interface.so): Fix typo in defn, so it works.
($(objpfx)$(interface.so)): Make it depend on libc.so.
1999-03-21 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/Makefile (subdir_lib): Depend on
$(link-rpcuserlibs).
1999-03-22 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/Makefile ($(inst_slibdir)/$(rtld-version-installed-name),
$(inst_slibdir)/$(rtld-installed-name), ldso_install): Disable
targets if not building shared libraries.
1999-03-22 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* configure.in: Also look in $PATH when searching for
install-info. Remove autoconf bug workaround and require autoconf
2.13.
1999-03-21 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* db/Makefile: Don't try to install shared library link if not
building with shared libs.
1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* rt/Makefile: Link against static library if no shared lib is
available.
* localedata/Makefile: The shells scripts implementing the test
require the dynamic linker which is not available with
--disable-shared. Skip the test if --disable-shared is given.
* linuxthreads/Makefile: Link test against static libpthread if no
shared lib is available.
* iconvdata/Makefile (tests): Run iconv-test only if we're
building shared libraries.
* elf/Makefile (tests): Likewise for elf tests.
* posix/Makefile: The test frameworks globtest and wordexp-test
require the dynamic linker which is not available with
--disable-shared. Skip the test if --disable-shared is given.
* grp/Makefile (otherlibs): For static nss build link against
necessary libs.
1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* debug/Makefile (install-bin): Install and build catchsegv only
if build-shared == yes. Reported by jussi@jlaako.pp.fi [PR
libc/965].
1999-03-20 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* time/tzfile.c (__tzfile_read): Handle the case where there are
transitions but no DST.
1999-03-20 Roland McGrath <roland@baalperazim.frob.com>
* mach/Machrules (extra-libs-others): Add $(interface-library) here
too, so it gets built in the others pass rather than the lib pass.
This is necessary since the RPC libraries need to be linked against
libc.
1999-03-19 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/generic/segfault.c: Include <stdio-common/_itoa.h> for
_itoa_word decl.
* sysdeps/mach/hurd/Makefile (link-rpcuserlibs): New variable.
($(common-objpfx)libc.so): Depend on that instead of $(rpcuserlibs).
($(link-rpcuserlibs)): New static pattern rule; link intermediate
versions of lib{mach,hurd}user.so without reference to libc.so,
then link libc.so against that to get deps and symbol versions, then
finally link real lib*user.so against libc.so.
* sysdeps/mach/hurd/fcntl.c (__fcntl: case F_GETLK,F_SETLK,F_SETLKW):
Support whole-file locking (only) by using the file_lock RPC. This
has very wrong semantics, but is better than nothing for the time
being. (Correct POSIX.1 locking will require new RPCs in the Hurd
protocols that will be somewhat hairy to specify.)
1999-03-17 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/ptsname.c: New file.
1999-03-20 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* timezone/asia: Fix rule in Asia/Nicosia entry.
1999-03-16 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/getopt.texi (Using Getopt): Explain "::" in option
string. Reported by Yuri Niyazov <yuricake@geocities.com>.
1999-03-18 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/clnt_unix.c: Fix creation of parameters for
sendmsg/recvmsg on non intel platforms.
* sunrpc/svc_unix.c: Likewise.
1999-03-18 Philip Blundell <philb@gnu.org>
* sysdeps/unix/sysv/linux/arm/getgroups.c: New file. Use the i386
implementation.
1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* timezone/africa: Update from tzdata1999b.
* timezone/asia: Likewise.
* timezone/australasia: Likewise.
* timezone/europe: Likewise.
* timezone/northamerica: Likewise.
* timezone/southamerica: Likewise.
* timezone/zone.tab: Likewise.
* timezone/README: Mention tzdata1999b.
1999-03-17 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/segfault.c (write_strsignal): New function.
(catch_segfault): Use it instead of calling strsignal.
1999-03-16 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* iconv/gconv.c (__gconv): Change type of last_start to unsigned
char to avoid warning.
1999-03-15 Ulrich Drepper <drepper@cygnus.com>
* iconv/iconv.c (iconv): Correctly cast parameters for __gconv.
* iconvdata/iso-2022-kr.c (EMIT_SHIFT_TO_INIT): Change type of
outbuf to unsigned char to avoid warning.
1999-03-11 David S. Miller <davem@redhat.com>
* sysdeps/sparc/sparc32/fpu/fpu_control.h: Add missing trap enable
masks.
* sysdeps/sparc/sparc64/fpu/fpu_control.h: Likewise.
1999-03-15 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv.h (gconv_fct): Change parameter from `char' to
`unsigned char'.
(gconv_step_data): Likewise.
* iconv/gconv_int.h (__gconv): Likewise.
(__BUILINT_TRANS): Likewise.
* iconv/gconv.c (__gconv): Likewise.
* iconv/iconv.c (iconv): Add casts for call of __gconv.
* iconv/skeleton.c: Change local parameters and variable from `char' to
`unsigned char'. Remove casts from calls into modules.
* iconvdata/iso-2022-jp.c (gconv): Change local variable outbuf from
`char' to `unsigned char'.
* wcsmbs/btowc.c: Change pointers from `char *' to `unsigned char *'.
* wcsmbs/mbrtowc.c: Likewise.
* wcsmbs/mbsnrtowcs.c: Likewise.
* wcsmbs/mbsrtowcs.c: Likewise.
* wcsmbs/wcrtomb.c: Likewise.
* wcsmbs/wcsnrtombs.c: Likewise.
* wcsmbs/wcsrtombs.c: Likewise.
* wcsmbs/wctob.c: Likewise.
1999-03-15 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/Versions (ld.so) [GLIBC_2.0]: Add
__hurd_sigthread_stack_base, __hurd_sigthread_stack_end,
__hurd_sigthread_variables, __hurd_threadvar_stack_mask,
__hurd_threadvar_stack_offset, __close, __fxstat, __getcwd,
__getpid, __libc_read, __libc_write, __lseek, __mmap, __open,
__xstat, _exit, _hurd_intr_rpc_mach_msg and abort.
1999-03-15 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/poll.c (__poll): Correctly pass NULL to
_hurd_select if TIMEMOUT is -1.
1999-03-15 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/recvfrom.c (recvfrom): Allow ADDR to be NULL.
1999-03-15 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-load.c: Compute rtld_search_dir array size correctly.
Reported by Yasushi Saito <yasushi@cs.washington.edu>.
1999-03-15 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/libc.texinfo: Undo last change for now.
1999-03-15 Ulrich Drepper <drepper@cygnus.com>
* intl/locale.alias: Add entries for Croatian.
Patch by Tomislav Vujec <tvujec@CARNet.hr>.
1999-03-13 Mark Kettenis <kettenis@gnu.org>
* sysdeps/unix/bsd/getpt.c (__getpt): Do not use `isatty' to check
if the opened master pty really is a pty. `isatty' checks for
tty-ness and a pty is not a tty. Return ENOENT instead of ENFILE
if we are out of pty's.
1999-03-13 Mark Kettenis <kettenis@gnu.org>
* sysdeps/generic/utmp_file.c (setutent_file): Make sure the just
opened file is closed on exec.
* login/utmp_daemon.c (setutent_daemon): Likewise for the just
opened socket.
1999-03-13 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/llio.texi (File Position Primitive): Reformat @end
command. Patch by Bruno Haible <haible@ilog.fr> [PR libc/1020].
1999-03-14 Ulrich Drepper <drepper@cygnus.com>
* nscd/nscd_getpw_r.c (nscd_getpw_r): Set `errno' correctly if no
entry is found.
* nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
* nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
* locale/programs/localedef.c (main): Initialize `cat' to please
the compiler.
1999-03-14 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Under O_NOFOLLOW,
check for root-owned symlinks and reject them too.
1999-03-09 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdio-common/printf_fphex.c: Move to ...
* sysdeps/generic/printf_fphex.c: ... here. Fix exponent of
extended precision number.
* sysdeps/m68k/printf_fphex.c: New file.
1999-03-09 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/stdio.texi: Fix typos.
1999-03-09 Ulrich Drepper <drepper@cygnus.com>
* version.h (VERSION): Bump to 2.1.1.
1999-03-09 Thorsten Kukuk <kukuk@suse.de>
* nis/ypclnt.c: Try only twice to connect to NIS server.
1999-03-09 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdexec.c (_hurd_exec): Add missing `else' in last change.
1999-03-09 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdlib/strtod.c (round_and_return): Fix rounding of denormals.
(DENORM_EXP): New define. Use it as the exponent for a denormal.
* stdlib/strtold.c: Moved to ...
* sysdeps/generic/strtold.c: ... here.
* sysdeps/m68k/strtold.c: New file.
1999-03-09 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* stdio-common/printf_fphex.c (__printf_fphex): Print no decimal
point if the precision is zero, even if the mantissa is non-zero.
1999-03-09 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/ioctl.c (__ioctl): Move the marshalling of the
arguments into the request message buffer inside `send_rpc'
subfunction. We must repeat the marshalling when retrying the RPC
after a SIGTTOU delivery.
* hurd/ctty-input.c (_hurd_ctty_input): Use early short-circuit code
path when there is no ctty port.
* hurd/ctty-output.c (_hurd_ctty_output): Likewise.
Move sigstate check inside loop so we recheck after handling a signal.
1999-03-05 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/llio.texi (Open-time Flags): Clarify that O_SHLOCK and
O_EXLOCK are BSD extensions.
Reported by Jochen Voss <voss@mathematik.uni-kl.de> [PR libc/985].
1999-03-08 Ulrich Drepper <drepper@cygnus.com>
* manual/signal.texi (Termination in Handler): Correct example.
Install default handler before reraising the signal.
Patch by Jochen Voss <voss@mathematik.uni-kl.de>.
1999-03-08 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdexec.c (_hurd_exec): Handle ARGV or ENVP parameters being
null, in which case send an empty string.
1999-03-02 Mark Kettenis <kettenis@gnu.org>
* Makerules (LD_FLAGS-c.so): Add -u __register_frame to force the
backward compatibility EH functions to be linked when using
gcc-2.8.1. Patch by Zack Weinberg <zack@rabi.columbia.edu>.
1999-03-08 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/ttyname.c (ttyname): Undo last change.
/dev/pts status may change during runtime.
1999-03-08 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Undo last
change. /dev/pts status can change during runtime.
1999-03-07 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/svc_tcp.c (readtcp): go into fatal error state if
poll reports error.
* nis/nss_nisplus/nisplus-parser.c: Avoid duplicate strlen calls,
add some more sanity checks.
* nis/nss_nisplus/nisplus-pwd.c: Include nisplus-parser.h for
parser prototype.
1999-03-05 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/rpc/xdr.h: Add x_getint32/x_putint32 to xdr_ops,
change XDR_GETINT32/XDR_PUTINT32 to sue new functions.
* sunrpc/xdr_mem.c: Add xdrmem_getint32, xdrmem_putint32.
* sunrpc/xdr_rec.c: Add xdrrec_getint32, xdrrec_putint32.
* sunrpc/xdr_sizeof.c: Add x_putint32, add dummy function
for x_getint32.
* sunrpc/xdr_stdio.c: Add xdrstdio_getint32, xdrstdio_putint32.
* nis/nis_print.c: Fix ctime argument for platforms where
sizeof (time_t) != sizeof (int).
1999-03-07 Mark Kettenis <kettenis@gnu.org>
* sysdeps/unix/bsd/clock.c (timeval_to_clock_t): Use
CLOCKS_PER_SEC instead of CLK_TCK.
1999-03-05 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Remember
whether /dev/pts is available.
* sysdeps/unix/sysv/linux/ttyname.c (ttyname): Fix handling of
dev_pts_available.
* posix/globtest.sh: Make common_objpfx path absolute and and db2
and hesiod directory to library path [PR libc/1007].
1999-03-05 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* resolv/inet_addr.c (inet_aton): Don't allow componets >
255. Patch by Bruno Haible <haible@ilog.fr> [PR libc/1010].
1999-03-05 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/powerpc/dl-machine.c (__elf_machine_runtime_setup):
DT_PLTGOT has already been relocated.
(__elf_machine_fixup_plt): Likewise.
Minor cleanups.
1999-03-04 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdlookup.c (__hurd_file_name_lookup): Comment fix.
1999-03-03 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/wcsmbsload.c (add_slashes): Rename to norm_add_slashes
and fold string to uppercase [PR libc/1005].
1999-03-03 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dl-load.c (lose): Fix return type.
1999-03-03 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/bits/fcntl.h
[__USE_GNU] (O_NOFOLLOW, O_DIRECTORY): New macros.
* hurd/hurdlookup.c (__hurd_file_name_lookup): If O_NOFOLLOW is set,
set O_NOTRANS as well.
(__hurd_file_name_lookup_retry): At successful end of lookup,
if O_NOFOLLOW set, io_stat the resultant port and fail with ENOENT if
it is a translated node not owned by root.
(__hurd_file_name_lookup): If O_DIRECTORY is set, put a trailing slash
on the file name passed to LOOKUP.
1999-03-02 Ulrich Drepper <drepper@cygnus.com>
* manual/time.texi (High Resolution Timer): Correct computation in
example. Reported by jjf@devel.cemsys.com.
1999-03-02 Philip Blundell <pb@nexus.co.uk>
* sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): DT_PLTGOT
entry is already relocated.
1999-03-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* resolv/res_hconf.c (parse_line): Skip empty lines. Bug reported
by Marcus Harnisch <marcus@harnisch.isdn.cs.tu-berlin.de>.
1999-03-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/i386/sys/ucontext.h (ucontext): Rename field uc_links to
uc_link which is the right name according to Unix98.
Reported by Craig Metz [PR libc/1001].
* sysdeps/arm/sys/ucontext.h (ucontext): Likewise.
* sysdeps/m68k/sys/ucontext.h (ucontext): Likewise.
* sysdeps/mips/sys/ucontext.h (ucontext): Likewise.
* sysdeps/unix/sysv/linux/alpha/sys/ucontext.h (ucontext): Likewise.
* sysdeps/unix/sysv/linux/i386/sys/ucontext.h (ucontext): Likewise
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (ucontext): Likewise.
1999-02-25 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/libc.texinfo: Wrap @top node inside @ifnottex instead of
@ifinfo.
1999-02-25 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* iconvdata/Makefile: Always include iconv-rules, but disable rule
to regenerate it if avoid-generated.
* Makeconfig: Always include sys-dirs, but disable rule to
regenerate it when avoid-generated.
* sysdeps/unix/Makefile: Put `ifndef avoid-generated' only around
rule to generate sysd-syscalls.
* elf/Makefile (generated): Remove $(objpfx) from names.
1999-02-28 Mark Kettenis <kettenis@gnu.org>
* sysdeps/mach/hurd/getsockname.c (getsockname): Set *LEN to the
actual length if the adress length is smaller than the input
value. Change type of *LEN paramater to socklen_t.
* sysdeps/mach/hurd/getpeername.c (getpeername): Likewise.
* sysdeps/mach/hurd/accept.c (accept): Likewise.
* sysdeps/mach/hurd/recvfrom.c (recvfrom): Likewise.
* sysdeps/mach/hurd/sendto.c (sendto): Change type of ADDR_LEN
paramater to socklen_t.
1999-02-28 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurd-raise.c (_hurd_raise_signal): Send "poll request"
msg_sig_post RPC (with SIGNO=0), rather than generating signal (again)
with the RPC.
1999-02-27 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/getsysstats.c (__get_nprocs_conf, __get_nprocs,
__get_phys_pages): Cast &HBI to silence warning.
* hurd/Makefile (routines): Add hurdchdir and hurdfchdir.
* hurd/hurdchdir.c: New file.
* hurd/hurdfchdir.c: New file.
* sysdeps/mach/hurd/chroot.c: Call
_hurd_change_directory_port_from_name to do the work.
* sysdeps/mach/hurd/chdir.c: Likewise.
* sysdeps/mach/hurd/fchdir.c: Call
_hurd_change_directory_port_from_fd to do the work.
* hurd/fchroot.c: Likewise.
* hurd/hurd.h: Declare them.
1999-02-27 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-load.c (lose): Add more comments to explain the `why'.
(_dl_map_object): Remove redundant test.
1999-02-27 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdselect.c (_hurd_select): When bailing for bogus fd, don't
try to _hurd_port_free a lower-numbered descriptor that was not in any
fd_set.
1999-02-26 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* wcsmbs/wcstold_l.c [__NO_LONG_DOUBLE_MATH]: Add prototype
declaration for ____wcstod_l_internal.
* stdlib/strtold.c [__NO_LONG_DOUBLE_MATH]: Include <stdlib.h> for
__strtod_internal prototype.
* stdlib/strtold_l.c [__NO_LONG_DOUBLE_MATH]
(____strtold_l_internal): Add prototype declaration.
(__strtold_l): Call correct function.
1999-02-24 Ulrich Drepper <drepper@cygnus.com>
* elf/elf.h: Add 32bit HPPA definitions.
1999-02-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* malloc/malloc.c (mALLOC_SET_STATe): Handle the case where a
non-checked heap is restored when malloc checking was requested by
the user.
(struct malloc_state): Add using_malloc_checking.
(MALLOC_STATE_VERSION): Increment minor.
(using_malloc_checking, disallow_malloc_check): New variables.
(__malloc_check_init): Use them.
(mALLOC_GET_STATe): Use mALLOc to allocate the malloc_state, so
that it can the chunk is properly instrumented when malloc
checking is enabled. Set the new using_malloc_checking field.
(malloc_hook_ini): Correct signature when _LIBC is not defined.
1999-02-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/unix/sysv/linux/i386/dl-librecon.h
(DISTINGUISH_LIB_VERSIONS): Don't relocate DT_STRTAB a second
time.
* elf/rtld.c (dl_main): Rename paths_initialized to rtld_is_main.
Don't call elf_get_dynamic_info and _dl_setup_hash a second time
if ld.so is the main program.
1999-02-23 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfprintf.c (vfprintf): If precision or width is too
large for work_buffer, allocate new buffer.
(printf_unknown): Likewise. [PR libc/988]
1999-02-22 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/ttyname.c: Use __xstat and __fxstat
instead of stat and fstat.
* sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
1999-02-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dl-error.c (_dl_signal_cerror): New function.
(_dl_signal_error): Don't call receiver function.
* elf/dl-lookup.c (_dl_lookup_symbol): Call _dl_signal_cerror
instead of _dl_signal_error when reporting references to undefined
symbols or versions.
(_dl_lookup_versioned_symbol): Likewise.
(_dl_lookup_versioned_symbol_skip): Likewise.
* elf/dl-version.c (match_symbol): Likewise.
* elf/ldsodefs.h: Declare _dl_signal_cerror.
1999-02-22 Ulrich Drepper <drepper@cygnus.com>
* misc/getttyent.c (getttyent): Release lock on stream later to
also protect global variable zapchar.
* sysdeps/unix/sysv/linux/clock.c: Don't test return value of
__times [PR libc/990].
1999-02-21 David S. Miller <davem@redhat.com>
* sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h: Fix
parentheses in Feb 2 changes.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h: Likewise.
1999-02-21 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/generic/glob.c (glob): Save previous errno.
1999-02-21 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/glob.c (glob): Enlarge buffers for reentrant
lookup functions if it is too small.
1999-02-20 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-deps.c (_dl_map_object_deps): Don't add dummy objects created
for tracing to the scope lists.
* elf/do-lookup.h: Remove test for l_opencount == 0 after above change.
DT_SYMTAB is always available according to ELF spec.
* elf/dl-lookup.c (_dl_lookup_symbol_skip): Before first do_lookup
call test whether there is any scope left.
(_dl_lookup_versioned_symbol_skip): Likewise.
* elf/Makefile (distribute): Add do-lookup.h.
* elf/do-lookup.h: New file. Split out from dl-lookup.c.
* elf/dl-lookup.c: Move do_lookup function in separate file and
include the file twice, for handling versioning and without it.
* sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): DT_PLTGOT
entry is already relocated.
* sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): Likewise.
* sysdeps/m68k/dl-machine.h (elf_machine_runtime_setup): Likewise.
* sysdeps/mips/dl-machine.h (elf_machine_runtime_setup): Likewise.
* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup):
Likewise.
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_runtime_setup):
Likewise.
* sysdeps/mips/mips64/dl-machine.h (elf_machine_runtime_setup):
Likewise.
* elf/dynamic-link.h (elf_get_dynamic_info): Take new argument with
load address. Relocate d_ptr in DT_DTRTAB, DT_SYMTAB, DT_RELA, DT_REL,
DT_JMPREL, DT_PLTGOT, and DT_VERSYM l_info entry.
(_ELF_DYNAMIC_DO_RELOC): Take extra argument which specifies whether
rel and rela relocations can both happen and skip one test if this
is not possible.
(ELF_DYNAMIC_DO_RELA, ELF_DYNAMIC_DO_REL): Call _ELF_DYNAMIC_DO_RELOC
appropriately.
* elf/dl-addr.c (_dl_addr): DT_SYMTAB and DT_STRTAB entries are
already relocated.
* elf/dl-deps.c (_dl_map_object_deps): DT_STRTAB entry is already
relocated.
* elf/dl-load.c (_dl_init_paths): DT_STRTAB entry is already relocated.
(_dl_map_object_from_fd): Call elf_get_dynamic_info with new argument.
(_dl_map_object): DT_STRTAB entry is already relocated.
* elf/dl-lookup.c (do_lookup): DT_STRTAB and DT_SYMTAB entries are
already relocated.
* elf/dl-reloc.c (_dl_relocate_object): DT_STRTAB entry is already
relocated.
* elf/dl-runtime.c (fixup): DT_SYMTAB, DT_STRTAB, DT_JMPREL, and
DT_VERSYM entries are already relocated.
(profile_fixup): Likewise.
* elf/dl-version.c: Rename VERSTAG macro into VERSYMIDX. Replace
all users.
(match_symbol): DT_STRTAB entry is already relocated.
(_dl_check_map_versions): Likewise. Also fo DT_VERSYM.
* elf/do-rel.h (elf_dynamic_do_rel): reladdr is now assumed to be
relocated already. DT_SYMTAB and DT_VERSYM entries are also relocated.
* elf/rtld.c (_dl_start): Pass extra argument to elf_get_dynamic_info.
(find_needed): DT_STRTAB entry is already relocated.
(dl_main): Pass extra argument to elf_get_dynamic_info.
DT_STRTAB entry is already relocated.
* sysdeps/alpha/dl-machine.h (elf_machine_fixup_plt): DT_JMPREL and
DT_PLTGOT entries are already relocated.
(elf_machine_rela): Likewise for DT_SYMTAB.
* sysdeps/arm/dl-machine.h (elf_machine_rel): DT_STRTAB is already
relocated.
* sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
* sysdeps/m68k/dl-machine.h (elf_machine_rela): Likewise.
* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
* sysdeps/powerpc/dl-machine.c (__process_machine_rela): Likewise.
* sysdeps/mips/dl-machine.h (elf_machine_got_rel): Likewise.
(elf_machine_got_rel): Likewise for DT_SYMTAB and DT_STRTAB.
* sysdeps/mips/mips64/dl-machine.h: Likewise.
* grp/initgroups.c (initgroups): If function in current module was
successful don't stop but continue to process to get all the groups.
* elf/dl-load.c (_dl_map_object_from_fd): Use global
_dl_pf_to_proot array to convert p_flags value.
* elf/dl-reloc.c (_dl_relocate_object): Likewise.
* elf/dynamic-link.h (elf_get_dynamic_info): Use memset instead of
loop to clear `info'.
* sysdeps/i386/i486/bits/string.h: If fill byte is constant let gcc
do the work and don't use inline assembler.
1999-02-19 Ulrich Drepper <drepper@cygnus.com>
* elf/ldsodefs.h (_dl_signal_error): Mark as __noreturn__.
* elf/dl-load.c (lose): Make it a function at the toplevel, mark as
noreturn, and prevent it from being inlined.
Define LOSE appropriately.
(_dl_map_object_from_fd): Compare all bytes in e_ident at once.
Optimize decoding of p_flags for certain platforms.
1999-02-19 Philip Blundell <pb@nexus.co.uk>
* Makeconfig (link-libc): When doing a static link, make sure that
libgcc.a is included both before and after libc.a.
1999-02-18 Thorsten Kukuk <kukuk@suse.de>
* nis/nss_compat/compat-spwd.c: Fix handling of default values for
sp_warn, sp_inact, sp_expire and sp_flag.
1999-02-18 Ulrich Drepper <drepper@cygnus.com>
* elf/link.h (link_map): Add l_dev and l_ino.
* elf/dl-load.c (_dl_map_object_from_fd): Test dev/ino of newly
loaded shared object with all loaded objects. Initialize l_ino
and l_dev in case it's new.
* elf/rtld.c (dl_main): Explain situation is l_dev/l_ino with main
object.
* elf/Makefile: Compile and run new test.
* elf/multiload.c: New file.
* nss/nsswitch.h (service_user): Change name field from const char *
to char[0].
(name_database_entry): Likewise.
* nss/nsswitch.c (nss_parse_service_list): Adjust memory allocation
for change of `service_user'.
(nss_getline): Adjust memory allocation for change of
`name_database_entry'.
* catgets/catgets.c: Correctly handle NLSPATH from environment
[PR libc/980].
* io/Makefile (routines): Add lock64.
* io/Versions: Add lockf64 for GLIBC_2.1.1.
* sysdeps/generic/lockf64.c: New file.
1999-02-16 Ulrich Drepper <drepper@cygnus.com>
* string/bits/string2.h: Only use strncmp optimization if count
argument is constant.
1999-02-16 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/revoke.c: New file.
1999-02-16 Ulrich Drepper <drepper@cygnus.com>
* wctype/wctype.h (_ISwbit): Cast result of shift operations to
int to avoid warning about `ISO C restricts enumerator values to
range of `int''.
1999-02-16 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* elf/dlfcn.h: Fix typo.
* sysdeps/generic/bits/dlfcn.h: Likewise.
* sysdeps/mips/bits/dlfcn.h: Likewise.
1999-02-16 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/i386/i486/bits/string.h (memcmp): Correctly set flags
for the case N == 0.
* db2/Makefile (distribute): Add LICENSE.
1999-02-03 Jeff Bailey <jbailey@nisa.net>
* sysdeps/unix/make_errlist.c: Add i18n and copyright to
generated files.
* sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c: Fix typo.
1999-02-16 Ulrich Drepper <drepper@cygnus.com>
* time/mktime.c: Use ISO C form for function definitions and
remove unnecessary prototypes.
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix typo in last change.
* time/time.h: Avoid unneccesary #ifdef.
1999-02-15 Geoff Keating <geoffk@ozemail.com.au>
* stdio-common/_itoa.c (_itoa): Correct parameters to
udiv_qrnnd_preinv.
1999-02-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* misc/sys/cdefs.h: Undefine __PMT since it might be defined
before (e.g. in glob.h).
Closes PR libc/959.
1999-02-16 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/mips/fpu_control.h: Fix typo.
Patch by Sylvain Pion <Sylvain.Pion@sophia.inria.fr>.
Remove __setfpucw.
1999-02-10 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/pipe.c (__pipe): Don't call __socket_shutdown on
the "unused" ends of the sockets. Let pipes be bidirectional.
1999-02-15 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Correct test for
invalid ai_flags.
1999-02-15 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/llio.texi (Waiting for I/O): Correct meaning. Patch by
Jochen Voss <voss@mathematik.uni-kl.de> [PR libc/969].
* manual/setjmp.texi (Non-Local Exits and Signals): Fix
typo. Patch by Jochen Voss <voss@mathematik.uni-kl.de> [PR libc/970].
1999-02-15 Ulrich Drepper <drepper@cygnus.com>
* string/Versions: Add __strverscmp to GLIBC_2.1.1.
1999-02-13 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* misc/syslog.c (vsyslog): Remember errno for %m format. Fix
check for priority mask.
1999-02-14 Ulrich Drepper <drepper@cygnus.com>
* resolv/netdb.h (AI_NUMERICHOST): Change to 4.
Reported by Craig Metz <cmetz@inner.net> .
1999-02-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* stdio-common/Makefile (tests): tllformat added.
* stdio-common/tllformat.c: New program, based on tiformat.c with
examples from Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
1999-02-14 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* posix/test-vfork.c: Fix exit status test.
1999-02-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/sa_len.c (__libc_sa_len): Add some
missing cases. Reported by Craig Metz <cmetz@inner.net> [PR libc/964].
1999-02-14 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/m68k/fpu/s_modf.c: Optimized by using __m81_test instead
of separare explicit comparisons.
1999-02-11 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/wordsize-64/inttypes.h: Always define ldiv_t if not yet
defined.
* sysdeps/wordsize-32/inttypes.h: Always define lldiv_t if not yet
defined.
1999-02-09 Ulrich Drepper <drepper@cygnus.com>
* po/el.po: Update from translation team.
1999-02-09 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* intl/locale.alias: Fix slovenian entry [PR libc/948].
1999-02-09 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* elf/sprof.c: assert.h isn't used anymore, remove inclusion.
* inet/ruserpass.c: Likewise.
* locale/programs/stringtrans.c: Likewise.
* locale/programs/localedef.c: Likewise.
* nscd/grpcache.c: Likewise.
* nss/nss_files/files-XXX.c: Likewise.
* stdlib/canonicalize.c: Likewise.
* sysdeps/posix/sigwait.c: Likewise.
1999-02-09 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sunrpc/pmap_rmt.c (clnt_broadcast): We need 32 bit comparison
even on 64 bit platforms.
* sunrpc/clnt_tcp.c (clnttcp_call): Likewise.
Patch by Loic Prylli <Loic.Prylli@ens-lyon.fr>.
1999-02-09 Ulrich Drepper <drepper@cygnus.com>
* intl/dcgettext.c: Include locale.h is available.
1999-02-08 Ulrich Drepper <drepper@cygnus.com>
* po/nl.po: Update from translation team.
* sysdeps/libm-i387/s_asinhf.S: Correct computing absolute value.
* Makefile: Allow calling goals for po subdir.
* sysdeps/unix/sysv/linux/alpha/bits/signum.h: Add missing RT
signal definitions.
* po/el.po: New file.
1999-02-07 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dl-load.c (_dl_map_object_from_fd): Replace magic constant
when processing DT_SYMBOLIC objects.
1999-02-07 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* elf/dl-load.c (_dl_map_object_from_fd): When looking for the
program headers without PT_PHDR only require that they are
contained within one of the loaded segments. Don't use assert,
since that would be a bug in the object, not the dynamic linker.
1999-02-08 Richard Henderson <rth@cygnus.com>
* sysdeps/alpha/dl-machine.h (TRAMPOLINE_TEMPLATE): Save and
restore all call-clobbered fp regs.
1999-02-08 Ulrich Drepper <drepper@cygnus.com>
* po/cs.po: New file.
* resolv/res_hconf.c (_res_hconf_init): Don't use ENV_HOSTCONF for
SUID binaries.
1999-02-07 Ulrich Drepper <drepper@cygnus.com>
* signal/signal.h: Don't declare __libc_allocate_rtsig.
* include/signal.h: Declare __libc_allocate_rtsig here.
* elf/dl-lookup.c: Increment _dl_num_relocations in the four entry
point functions, not do_lookup since the later can be called more
than once.
1999-02-03 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/generic/segfault.c: Add ADVANCE_STACK_FRAME
macro, so that architectures which need to add some special
offset to stack pointer can share this file.
* sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/bits/mman.h: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/mman.h: Remove.
* sysdeps/unix/sysv/linux/sparc/bits/mman.h: New file - common
between sparc32 and sparc64.
* sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Remove.
* sysdeps/unix/sysv/linux/sparc/vfork.S: New file - common
between sparc32 and sparc64.
* sysdeps/unix/sysv/linux/sparc/sparc32/fork.S: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/fork.S: Remove.
* sysdeps/unix/sysv/linux/sparc/fork.S: New file - common
between sparc32 and sparc64.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.S: Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.S: Remove.
* sysdeps/unix/sysv/linux/sparc/sysdep.S: New file - common
between sparc32 and sparc64.
1999-02-07 Ulrich Drepper <drepper@cygnus.com>
* Versions.def: New version GLIBC_2.1.1 for libc.
* stdlib/Versions: Add _Exit, imaxdiv, and imaxdiv to GLIBC_2.1.1.
* stdlib/labs.c: Moved to...
* sysdeps/generic/labs.c: ...here.
* stdlib/llabs.c: Moved to...
* sysdeps/generic/llabs.c: ...here.
* stdlib/stdlib.h: Allow definition of ldiv_t and lldiv_t in other
header. Declare _Exit.
* sysdeps/generic/_exit.c: Add alias _Exit.
* sysdeps/mach/hurd/_exit.c: Likewise.
* sysdeps/standalone/i386/force_cpu386/_exit.c: Likewise.
* sysdeps/standalone/i960/nindy960/_exit.c: Likewise.
* sysdeps/standalone/m68k/m68020/mvme136/_exit.c: Likewise.
* sysdeps/unix/_exit.c: Likewise.
* sysdeps/wordsize-32/inttypes.h: Define imaxdiv_t and declare
imaxdiv and imaxabs. Declare lldiv_t if necessary.
* sysdeps/wordsize-64/inttypes.h: Likewise.
* sysdeps/wordsize-32/llabs.c: New file.
* sysdeps/wordsize-32/lldiv.c: New file.
* sysdeps/wordsize-64/labs.c: New file.
* sysdeps/wordsize-64/ldiv.c: New file.
* manual/arith.texi: Document imaxabs, imaxdiv_t, and imaxdiv.
* manual/startup.texi: Document _Exit.
1999-02-07 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* nscd/cache.c: Include <arpa/inet.h> for inet_ntop.
1999-02-06 Ulrich Drepper <drepper@cygnus.com>
* Versions.def: Add versions for ld.so.
* csu/Versions: Remove __libc_stack_end here.
* elf/Versions: Split libc definitions in libc and ld.so definitions.
* elf/Makefile (ld-map): Change to ld.so.map.
* scripts/versions.awk: Recognize dot in library names.
* ctype/ctype.h: Remove definitions of __tolower and __toupper.
Don't use __tolower and __toupper in inline functions.
Add optimizing macros for tolower and toupper.
* ctype/ctype-extn.c (_tolower): Don't use __tolower.
(_toupper): Don't use __toupper.
* ctype/ctype.c (tolower): Don't use __tolower.
(toupper): Don't use toupper.
* nscd/cache.c (prune_cache): Correct printing of debugging messages.
* resolv/Versions (libresolv): Export __ns_name_unpack and
__ns_name_ntop.
* resolv/res_comp.c: Rename ns_name_unpack to __ns_name_unpack and
make it global. Change all users. Similar for ns_name_ntop.
* resolv/nss_dns/dns-host.c: Don't use dn_expand when extracting in
user-provided buffer. Use __ns_name_unpack and __ns_name_ntop
directly to detect too small buffer.
* resolv/nss_dns/dns-network.c: Likewise.
* stdio-common/Makefile (tests): Add scanf12.
* stdio-common/scanf12.c: New file.
* stdio-common/scanf12.input: New file.
* stdio-common/vfscanf.c (__vfscanf): Handle +/- at beginning of
floating-point correctly if the number is invalid.
* stdio-common/vfscanf.c: Don't use non-reentrant multibyte conversion
functions.
* stdio-common/printf_fp.c: Likewise.
* stdio-common/printf_fphex.c: Likewise.
* stdio-common/vfprintf.c: Likewise.
See ChangeLog.9 for earlier changes.