From 3d8d9f8f2dce3fdb7ba2c9d3e5cc548297e8fa3a Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Mon, 26 Sep 2005 07:45:35 +0000 Subject: [PATCH] Fix order and style(9) to match surrounding defs. --- sys/sys/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/types.h b/sys/sys/types.h index fa1e0bd3941a..7a0edf29ae5a 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -270,6 +270,7 @@ typedef __vm_size_t vm_size_t; #ifdef _KERNEL typedef int boolean_t; typedef __cpumask_t cpumask_t; +typedef struct device *device_t; typedef __intfptr_t intfptr_t; /*- @@ -285,7 +286,6 @@ typedef __uint32_t intrmask_t; /* Interrupt mask (spl, xxx_imask...) */ typedef __uintfptr_t uintfptr_t; typedef __uint64_t uoff_t; typedef struct vm_page *vm_page_t; -typedef struct device *device_t; #define offsetof(type, field) __offsetof(type, field)