diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-04 07:40:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-04 07:40:43 +0000 |
commit | e22a3eb7947347b9d7aacd14c72edd7983677781 (patch) | |
tree | d92a4485e95ce9633046e0b1393f5f1d6fb38c93 | |
parent | 43f0382c7263573658c772e9c26048c944f08981 (diff) | |
download | glibc-e22a3eb7947347b9d7aacd14c72edd7983677781.tar glibc-e22a3eb7947347b9d7aacd14c72edd7983677781.tar.gz glibc-e22a3eb7947347b9d7aacd14c72edd7983677781.tar.bz2 glibc-e22a3eb7947347b9d7aacd14c72edd7983677781.zip |
(__t_scalar_t, __t_uscalar_t): Make long types.
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/types.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/bits/types.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/types.h b/sysdeps/unix/sysv/linux/alpha/bits/types.h index d55fee384c..8a79621cc6 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/types.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/types.h @@ -117,8 +117,8 @@ typedef struct } __fd_set; /* Used in XTI. */ -typedef int __t_scalar_t; -typedef unsigned int __t_uscalar_t; +typedef long int __t_scalar_t; +typedef unsigned long int __t_uscalar_t; /* Duplicates info from stdint.h but this is used in unistd.h. */ typedef long int __intptr_t; diff --git a/sysdeps/unix/sysv/linux/mips/bits/types.h b/sysdeps/unix/sysv/linux/mips/bits/types.h index a52bb8022b..48a9bf07e1 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/types.h +++ b/sysdeps/unix/sysv/linux/mips/bits/types.h @@ -143,8 +143,8 @@ typedef __u_long __ino64_t; typedef __loff_t __off64_t; /* Used in XTI. */ -typedef int __t_scalar_t; -typedef unsigned int __t_uscalar_t; +typedef long int __t_scalar_t; +typedef unsigned long int __t_uscalar_t; /* Duplicates info from stdint.h but this is used in unistd.h. */ typedef int __intptr_t; |