aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/alpha/bits/types.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-04-16 17:23:03 +0000
committerUlrich Drepper <drepper@redhat.com>1999-04-16 17:23:03 +0000
commit10c384636bd2d677b9cc8b610925f9d43698bd9c (patch)
tree35711e4497360b32ff7920a2edff3276c61e8149 /sysdeps/unix/sysv/linux/alpha/bits/types.h
parent1c533de9f349937af01b93eb6d37d247f78f1b8c (diff)
downloadglibc-10c384636bd2d677b9cc8b610925f9d43698bd9c.tar
glibc-10c384636bd2d677b9cc8b610925f9d43698bd9c.tar.gz
glibc-10c384636bd2d677b9cc8b610925f9d43698bd9c.tar.bz2
glibc-10c384636bd2d677b9cc8b610925f9d43698bd9c.zip
Update.
* sysdeps/unix/sysv/linux/bits/types.h: Correct signed/unsigned-ness of blkcnt and fsblkcnt. * sysdeps/unix/sysv/linux/alpha/bits/types.h: Likewise. * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha/bits/types.h')
-rw-r--r--sysdeps/unix/sysv/linux/alpha/bits/types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/types.h b/sysdeps/unix/sysv/linux/alpha/bits/types.h
index 0bc6cf6575..0af9fb399d 100644
--- a/sysdeps/unix/sysv/linux/alpha/bits/types.h
+++ b/sysdeps/unix/sysv/linux/alpha/bits/types.h
@@ -59,11 +59,11 @@ typedef __int32_t __pid_t; /* Type of process identifications. */
typedef __int64_t __ssize_t; /* Type of a byte count, or error. */
typedef __int64_t __rlim_t; /* Type of resource counts. */
typedef __int64_t __rlim64_t; /* "" (LFS) */
-typedef __int32_t __blkcnt_t; /* Type to count nr disk blocks. */
-typedef __int64_t __blkcnt64_t; /* "" (LFS) */
-typedef __uint32_t __fsblkcnt_t; /* Type to count file system blocks. */
-typedef __uint64_t __fsblkcnt64_t; /* "" (LFS) */
-typedef __uint32_t __fsfilcnt_t; /* Type to count file system inodes. */
+typedef __uint32_t __blkcnt_t; /* Type to count nr disk blocks. */
+typedef __uint64_t __blkcnt64_t; /* "" (LFS) */
+typedef __int32_t __fsblkcnt_t; /* Type to count file system blocks. */
+typedef __int64_t __fsblkcnt64_t; /* "" (LFS) */
+typedef __uint32_t __fsfilcnt_t; /* Type to count file system inodes. */
typedef __uint64_t __fsfilcnt64_t; /* "" (LFS) */
typedef __uint32_t __id_t; /* General type for IDs. */