mirror of git://sourceware.org/git/glibc.git
Update.
* include/bits/xopen_lim.h (LONG_BIT): Use LONG_MAX, not INT_MAX. Patch by Thorsten Kukuk <kukuk@suse.de>.
This commit is contained in:
parent
3fe4001526
commit
392a923998
|
|
@ -1,5 +1,8 @@
|
||||||
2000-09-16 Ulrich Drepper <drepper@redhat.com>
|
2000-09-16 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* include/bits/xopen_lim.h (LONG_BIT): Use LONG_MAX, not INT_MAX.
|
||||||
|
Patch by Thorsten Kukuk <kukuk@suse.de>.
|
||||||
|
|
||||||
* dlfcn/Makefile (distribute): Add defaultmod1.c and defaultmod2.c.
|
* dlfcn/Makefile (distribute): Add defaultmod1.c and defaultmod2.c.
|
||||||
(test): Add default.
|
(test): Add default.
|
||||||
(modules-names): Add defaultmod1 and defaultmod2.
|
(modules-names): Add defaultmod1 and defaultmod2.
|
||||||
|
|
|
||||||
|
|
@ -104,7 +104,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a word of type `long int'. */
|
/* Number of bits in a word of type `long int'. */
|
||||||
#if INT_MAX == 2147483647
|
#if LONG_MAX == 2147483647
|
||||||
# define LONG_BIT 32
|
# define LONG_BIT 32
|
||||||
#else
|
#else
|
||||||
/* Safe assumption. */
|
/* Safe assumption. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue