From 76489ac1ea604f511232838164573ea21e9a74a8 Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 21 Jun 2010 09:55:56 +0000 Subject: 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. --- sys/kern/sys_process.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/kern/sys_process.c') diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 65d9f69..40c861b 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -67,9 +67,9 @@ __FBSDID("$FreeBSD$"); struct ptrace_io_desc32 { int piod_op; - u_int32_t piod_offs; - u_int32_t piod_addr; - u_int32_t piod_len; + uint32_t piod_offs; + uint32_t piod_addr; + uint32_t piod_len; }; struct ptrace_vm_entry32 { -- cgit v1.1