mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
Fix signedness of __rlim_t and __rlim64_t.
This commit is contained in:
parent
c0318789f2
commit
43f0382c72
@ -57,8 +57,8 @@ typedef __int64_t __off64_t; /* "" (LFS) */
|
||||
typedef __int64_t __loff_t; /* Type of file sizes and offsets. */
|
||||
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 __uint64_t __rlim_t; /* Type of resource counts. */
|
||||
typedef __uint64_t __rlim64_t; /* "" (LFS) */
|
||||
typedef __uint32_t __blksize_t; /* Type to represnet block size. */
|
||||
typedef __uint32_t __blkcnt_t; /* Type to count nr disk blocks. */
|
||||
typedef __uint64_t __blkcnt64_t; /* "" (LFS) */
|
||||
|
@ -68,8 +68,8 @@ typedef long int __off_t; /* Type of file sizes and offsets. */
|
||||
typedef __quad_t __loff_t; /* Type of file sizes and offsets. */
|
||||
typedef int __pid_t; /* Type of process identifications. */
|
||||
typedef int __ssize_t; /* Type of a byte count, or error. */
|
||||
typedef long int __rlim_t; /* Type of resource counts. */
|
||||
typedef __quad_t __rlim64_t; /* Type of resource counts (LFS). */
|
||||
typedef __u_long __rlim_t; /* Type of resource counts. */
|
||||
typedef __u_quad_t __rlim64_t; /* Type of resource counts (LFS). */
|
||||
typedef __u_int __id_t; /* General type for ID. */
|
||||
|
||||
typedef struct
|
||||
|
Loading…
Reference in New Issue
Block a user