From d6e3624f09c651dba9a1e5b28a10bda56ea605a3 Mon Sep 17 00:00:00 2001 From: kib Date: Tue, 23 Nov 2010 12:47:15 +0000 Subject: Add include guards. MFC after: 3 days --- sys/compat/ia32/ia32_signal.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/compat/ia32/ia32_signal.h') diff --git a/sys/compat/ia32/ia32_signal.h b/sys/compat/ia32/ia32_signal.h index 717ae74..757e384 100644 --- a/sys/compat/ia32/ia32_signal.h +++ b/sys/compat/ia32/ia32_signal.h @@ -29,6 +29,9 @@ * $FreeBSD$ */ +#ifndef _COMPAT_IA32_IA32_SIGNAL_H +#define _COMPAT_IA32_IA32_SIGNAL_H + struct ia32_mcontext { u_int32_t mc_onstack; /* XXX - sigcontext compat. */ u_int32_t mc_gs; /* machine state (struct trapframe) */ @@ -188,3 +191,5 @@ extern int sz_freebsd4_ia32_sigcode; extern void ia32_sendsig(sig_t, struct ksiginfo *, sigset_t *); extern void ia32_setregs(struct thread *td, struct image_params *imgp, u_long stack); + +#endif -- cgit v1.1