mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
1998-07-22 Ulrich Drepper <drepper@cygnus.com> * Makefile (headers2_0): Add sigstack.h. * sysdeps/unix/sysv/linux/alpha/getrusage.S: Also define __getrusage. 1998-07-22 11:43 Ulrich Drepper <drepper@cygnus.com> * libio/fileops.c (_IO_file_sync): Don't lock stream here. Reported by Thorsten Kukuk. * string/strcoll.c: Correct problem with empty strings. * string/strxfrm.c: Likewise. Reported by vbzoli@hbrt.hu [PR libc/719]. 1998-07-21 18:40 Zack Weinberg <zack@rabi.phys.columbia.edu> * sysdeps/posix/tempname.c: Use the random-name generator already used by mktemp/mkstemp. Honor TMPDIR. 1998-07-21 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * hurd/Makefile (routines): Remove cthreads. * sysdeps/mach/hurd/Makefile (sysdep_routines): Add cthreads. * sysdeps/unix/sysv/linux/i386/Dist: Add missing files. * manual/Makefile (distribute): Add summary.texi. 1998-07-21 16:08 Zack Weinberg <zack@rabi.phys.columbia.edu>
This commit is contained in:
@ -82,6 +82,12 @@ STRCOLL (s1, s2, l)
|
||||
if (collate_nrules == 0)
|
||||
return STRCMP (s1, s2);
|
||||
|
||||
/* Handle empty strings as a special case. */
|
||||
if (*s1 == '\0')
|
||||
return *s2 == '\0' ? 0 : -1;
|
||||
else if (*s2 == '\0')
|
||||
return 1;
|
||||
|
||||
/* Get full information about the strings. This means we get
|
||||
information for all passes in a special data structure. */
|
||||
get_string (s1, s1forw, s1backw);
|
||||
|
Reference in New Issue
Block a user