diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | sysdeps/gnu/errlist-compat.awk | 1 | ||||
-rw-r--r-- | sysdeps/gnu/errlist-compat.c | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 12c6817af2..2356fdaae8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-08-27 Roland McGrath <roland@redhat.com> + + * sysdeps/gnu/errlist-compat.awk: Include <bits/wordsize.h> in output. + From Alexandre Oliva <aoliva@redhat.com>. + * sysdeps/gnu/errlist-compat.c: Regenerated. + 2002-08-27 Brian Youmans <3diff@gnu.org> * sysdeps/ieee754/flt-32/e_asinf.c: Modified copying permission diff --git a/sysdeps/gnu/errlist-compat.awk b/sysdeps/gnu/errlist-compat.awk index 84cee1565b..88b4d4f126 100644 --- a/sysdeps/gnu/errlist-compat.awk +++ b/sysdeps/gnu/errlist-compat.awk @@ -72,6 +72,7 @@ END { new = compat[old]; n = vcount[old]; printf "#if SHLIB_COMPAT (libc, %s, %s)\n", old, new; + printf "# include <bits/wordsize.h>\n"; printf "extern const char *const __sys_errlist_%s[];\n", old; printf "const int __sys_nerr_%s = %d;\n", old, n; printf "strong_alias (_sys_errlist_internal, __sys_errlist_%s)\n", old; diff --git a/sysdeps/gnu/errlist-compat.c b/sysdeps/gnu/errlist-compat.c index 56766bfd0f..741677bb1b 100644 --- a/sysdeps/gnu/errlist-compat.c +++ b/sysdeps/gnu/errlist-compat.c @@ -3,6 +3,7 @@ #include <shlib-compat.h> #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) +# include <bits/wordsize.h> extern const char *const __sys_errlist_GLIBC_2_0[]; const int __sys_nerr_GLIBC_2_0 = 123; strong_alias (_sys_errlist_internal, __sys_errlist_GLIBC_2_0) @@ -18,6 +19,7 @@ compat_symbol (libc, ___sys_nerr_GLIBC_2_0, _sys_nerr, GLIBC_2_0); #endif #if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_3) +# include <bits/wordsize.h> extern const char *const __sys_errlist_GLIBC_2_1[]; const int __sys_nerr_GLIBC_2_1 = 125; strong_alias (_sys_errlist_internal, __sys_errlist_GLIBC_2_1) |