From 7cd998e440a6194e10f6c3f992365995098074c5 Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 25 Sep 2008 20:12:38 +0000 Subject: Sort includes and add multiple include guards. --- sys/compat/freebsd32/freebsd32_util.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'sys/compat/freebsd32') diff --git a/sys/compat/freebsd32/freebsd32_util.h b/sys/compat/freebsd32/freebsd32_util.h index fadbeb4..5a4477f 100644 --- a/sys/compat/freebsd32/freebsd32_util.h +++ b/sys/compat/freebsd32/freebsd32_util.h @@ -28,14 +28,16 @@ * $FreeBSD$ */ -#include -#include -#include - +#ifndef _COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ +#define _COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ +#include #include #include -#include + +#include +#include +#include struct freebsd32_ps_strings { u_int32_t ps_argvstr; /* first of 0 or more argument strings */ @@ -50,3 +52,5 @@ struct freebsd32_ps_strings { #define FREEBSD32_PS_STRINGS \ (FREEBSD32_USRSTACK - sizeof(struct freebsd32_ps_strings)) + +#endif /* !_COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ */ -- cgit v1.1