mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/posix/sysconf.c: Remove _POSIX2_EQUIV_CLASS_MAX handling.
This commit is contained in:
parent
5116f3d8dc
commit
1c5d461740
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* posix/bits/posix2_lim.h: Remove _POSIX2_EQUIV_CLASS_MAX. I have
|
* posix/bits/posix2_lim.h: Remove _POSIX2_EQUIV_CLASS_MAX. I have
|
||||||
no idea where this came from.
|
no idea where this came from.
|
||||||
|
* sysdeps/posix/sysconf.c: Remove _POSIX2_EQUIV_CLASS_MAX
|
||||||
|
handling.
|
||||||
|
|
||||||
1999-12-31 Andreas Jaeger <aj@suse.de>
|
1999-12-31 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
|
|
||||||
4
NEWS
4
NEWS
|
|
@ -26,6 +26,10 @@ Version 2.2
|
||||||
threads. No changes should be necessary for user programs. The
|
threads. No changes should be necessary for user programs. The
|
||||||
integration was done by Andreas Jaeger and Adam D. Bradley.
|
integration was done by Andreas Jaeger and Adam D. Bradley.
|
||||||
|
|
||||||
|
* Compatibility code for K&R C compilers has been removed from the
|
||||||
|
header files. A ISO C compiler is needed to use the library
|
||||||
|
(conforming to either C89 or C99 standard).
|
||||||
|
|
||||||
|
|
||||||
Version 2.1.2
|
Version 2.1.2
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,16 @@
|
||||||
|
1999-12-31 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* internals.h: Remove duplicate prototype declarations.
|
||||||
|
|
||||||
|
* weaks.c: Remove __THROW from prototypes since the file is not
|
||||||
|
compiled by a C++ compiler.
|
||||||
|
* internals.h: Likewise.
|
||||||
|
|
||||||
|
1999-12-30 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/pthread/pthread.h: Move internal functions to...
|
||||||
|
* sysdeps/pthread/bits/libc-lock.h: ...here.
|
||||||
|
|
||||||
1999-12-29 Andreas Jaeger <aj@suse.de>
|
1999-12-29 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* sysdeps/pthread/pthread.h: Fix typos, reformat comments.
|
* sysdeps/pthread/pthread.h: Fix typos, reformat comments.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1991, 1993, 1995, 1996, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 93, 95, 96, 97, 99 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -309,13 +309,6 @@ __sysconf (name)
|
||||||
return -1;
|
return -1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
case _SC_EQUIV_CLASS_MAX:
|
|
||||||
#ifdef EQUIV_CLASS_MAX
|
|
||||||
return EQUIV_CLASS_MAX;
|
|
||||||
#else
|
|
||||||
return -1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
case _SC_EXPR_NEST_MAX:
|
case _SC_EXPR_NEST_MAX:
|
||||||
#ifdef EXPR_NEST_MAX
|
#ifdef EXPR_NEST_MAX
|
||||||
return EXPR_NEST_MAX;
|
return EXPR_NEST_MAX;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue