From: Ulrich Drepper Date: Sat, 16 Sep 2000 17:51:14 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/libc-2_1_94~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=392a9239981d9855a7ff70b62de1b1518b137f5b;p=thirdparty%2Fglibc.git Update. * include/bits/xopen_lim.h (LONG_BIT): Use LONG_MAX, not INT_MAX. Patch by Thorsten Kukuk . --- diff --git a/ChangeLog b/ChangeLog index 591952c397b..7626de1ebd8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-09-16 Ulrich Drepper + * include/bits/xopen_lim.h (LONG_BIT): Use LONG_MAX, not INT_MAX. + Patch by Thorsten Kukuk . + * dlfcn/Makefile (distribute): Add defaultmod1.c and defaultmod2.c. (test): Add default. (modules-names): Add defaultmod1 and defaultmod2. diff --git a/include/bits/xopen_lim.h b/include/bits/xopen_lim.h index e1f0a440d09..823c801e489 100644 --- a/include/bits/xopen_lim.h +++ b/include/bits/xopen_lim.h @@ -104,7 +104,7 @@ #endif /* Number of bits in a word of type `long int'. */ -#if INT_MAX == 2147483647 +#if LONG_MAX == 2147483647 # define LONG_BIT 32 #else /* Safe assumption. */