mirror of git://sourceware.org/git/glibc.git
Update.
2002-01-02 Bruno Haible <bruno@clisp.org> * intl/plural.y: Fix %expect count.
This commit is contained in:
parent
a0dcb6896c
commit
8e57fc7083
|
|
@ -1,3 +1,7 @@
|
||||||
|
2002-01-02 Bruno Haible <bruno@clisp.org>
|
||||||
|
|
||||||
|
* intl/plural.y: Fix %expect count.
|
||||||
|
|
||||||
2002-01-03 Jakub Jelinek <jakub@redhat.com>
|
2002-01-03 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* elf/Makefile (routines, shared-only-routines): Add
|
* elf/Makefile (routines, shared-only-routines): Add
|
||||||
|
|
|
||||||
9
NEWS
9
NEWS
|
|
@ -1,5 +1,5 @@
|
||||||
GNU C Library NEWS -- history of user-visible changes. 2001-12-11
|
GNU C Library NEWS -- history of user-visible changes. 2002-1-7
|
||||||
Copyright (C) 1992-2000, 2001 Free Software Foundation, Inc.
|
Copyright (C) 1992-2000, 2001, 2002 Free Software Foundation, Inc.
|
||||||
See the end for copying conditions.
|
See the end for copying conditions.
|
||||||
|
|
||||||
Please send GNU C library bug reports using the `glibcbug' script to
|
Please send GNU C library bug reports using the `glibcbug' script to
|
||||||
|
|
@ -18,6 +18,9 @@ Version 2.3
|
||||||
|
|
||||||
* Prelinking support was added for ELF targets. This requires additional
|
* Prelinking support was added for ELF targets. This requires additional
|
||||||
tools and recent versions of the GNU binutils. Contributed by Jakub Jelinek.
|
tools and recent versions of the GNU binutils. Contributed by Jakub Jelinek.
|
||||||
|
|
||||||
|
* Read-only stdio streams now use mmap to speed up operation but eliminating
|
||||||
|
copying and buffer underflows. Implemented by Ulrich Drepper.
|
||||||
|
|
||||||
Version 2.2.5
|
Version 2.2.5
|
||||||
|
|
||||||
|
|
@ -36,6 +39,8 @@ Version 2.2.5
|
||||||
|
|
||||||
* optimizations in the dynamic linker. binaries created by recent binutils
|
* optimizations in the dynamic linker. binaries created by recent binutils
|
||||||
versions start up quicker due to reduced time spend on relocations.
|
versions start up quicker due to reduced time spend on relocations.
|
||||||
|
|
||||||
|
* Support for use of gcc3 added by Jakub Jelinek and HJ Lu.
|
||||||
|
|
||||||
Version 2.2.4
|
Version 2.2.4
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
#define YYPARSE_PARAM arg
|
#define YYPARSE_PARAM arg
|
||||||
%}
|
%}
|
||||||
%pure_parser
|
%pure_parser
|
||||||
%expect 10
|
%expect 7
|
||||||
|
|
||||||
%union {
|
%union {
|
||||||
unsigned long int num;
|
unsigned long int num;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue