Use ISO C99 integer types in sys/kern where possible.

There are only about 100 occurences of the BSD-specific u_int*_t
datatypes in sys/kern. The ISO C99 integer types are used here more
often.
This commit is contained in:
Ed Schouten
2010-06-21 09:55:56 +00:00
parent c51050129f
commit 60ae52f785
24 changed files with 94 additions and 93 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ struct mqfs_node {
int mn_refcount;
mqfs_type_t mn_type;
int mn_deleted;
u_int32_t mn_fileno;
uint32_t mn_fileno;
void *mn_data;
struct timespec mn_birth;
struct timespec mn_ctime;