Add include guards.

MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2010-11-23 12:47:15 +00:00
parent 294fe04afc
commit f253bb0190
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=215741
2 changed files with 10 additions and 0 deletions

View File

@ -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

View File

@ -28,6 +28,9 @@
* $FreeBSD$
*/
#ifndef _COMPAT_IA32_IA32_UTIL_H
#define _COMPAT_IA32_IA32_UTIL_H
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
@ -51,3 +54,5 @@
struct syscall_args;
int ia32_fetch_syscall_args(struct thread *td, struct syscall_args *sa);
void ia32_set_syscall_retval(struct thread *, int);
#endif