diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-18 00:34:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-18 00:34:12 +0000 |
commit | 404127bca0508b64a40b6e77161cd555124408fa (patch) | |
tree | 7f868ec04a06bfbf6ad41efa08d59402ebff012e | |
parent | 827ff7580a99943f22c2d71fd95c67d86bb99ad7 (diff) | |
download | glibc-404127bca0508b64a40b6e77161cd555124408fa.zip glibc-404127bca0508b64a40b6e77161cd555124408fa.tar.gz glibc-404127bca0508b64a40b6e77161cd555124408fa.tar.bz2 |
Update.
* sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Remove greg_t,
gregset_t, fpregset_t, and NGREG definitions.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | localedata/ChangeLog | 4 | ||||
-rw-r--r-- | localedata/charmaps/ISO-8859-1 | 7 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/sys/procfs.h | 5 |
4 files changed, 14 insertions, 5 deletions
@@ -1,5 +1,8 @@ 1999-11-17 Ulrich Drepper <drepper@cygnus.com> + * sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Remove greg_t, + gregset_t, fpregset_t, and NGREG definitions. + * locale/programs/ld-ctype.c: Implement character width information handling. diff --git a/localedata/ChangeLog b/localedata/ChangeLog index ab2eab4..f7fcf3e 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,7 @@ +1999-11-17 Ulrich Drepper <drepper@cygnus.com> + + * charmaps/ISO-8859-1: Add width information. + 1999-11-12 Ulrich Drepper <drepper@cygnus.com> * charmaps/ISO-8859-7: Fix 0xa1 mapping. diff --git a/localedata/charmaps/ISO-8859-1 b/localedata/charmaps/ISO-8859-1 index d771128..0efd36b 100644 --- a/localedata/charmaps/ISO-8859-1 +++ b/localedata/charmaps/ISO-8859-1 @@ -353,3 +353,10 @@ CHARMAP <right-curly-bracket> /x7D <U007D> RIGHT CURLY BRACKET <tilde> /x7E <U007E> TILDE END CHARMAP + +WIDTH +<NU>...<US> 0 +<SP>...<'?> 1 +<DT>...<AC> 0 +<NS>...<y:> 1 +END WIDTH diff --git a/sysdeps/unix/sysv/linux/alpha/sys/procfs.h b/sysdeps/unix/sysv/linux/alpha/sys/procfs.h index 87f8e4c..a9ae104 100644 --- a/sysdeps/unix/sysv/linux/alpha/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/alpha/sys/procfs.h @@ -40,11 +40,6 @@ struct elf_siginfo int si_errno; /* Errno. */ }; -typedef elf_greg_t greg_t; -typedef elf_gregset_t gregset_t; -typedef elf_fpregset_t fpregset_t; -#define NGREG ELF_NGREG - /* Definitions to generate Intel SVR4-like core files. These mostly have the same names as the SVR4 types with "elf_" tacked on the front to prevent clashes with linux definitions, and the typedef |