Change the type of blksize_t from uint32_t to a POSIX compliant int32_t

http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_types.h.html
This commit is contained in:
Kevin Lo 2015-01-04 15:26:02 +00:00
parent f636caf195
commit aad37c8145
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=276660

View File

@ -35,7 +35,7 @@
/*
* Standard type definitions.
*/
typedef __uint32_t __blksize_t; /* file block size */
typedef __int32_t __blksize_t; /* file block size */
typedef __int64_t __blkcnt_t; /* file block count */
typedef __int32_t __clockid_t; /* clock_gettime()... */
typedef __uint32_t __fflags_t; /* file flags */