diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2001-12-06 18:17:02 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2001-12-06 18:17:02 +0000 |
| commit | aee9d2774feb53926535425468e781cccb390605 (patch) | |
| tree | 5ff0b03a55e64c9ad40919dda7363e5e1de60e0d /sys | |
| parent | a116e755dc327995ac749b8f8aa6f7279ae0869c (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/ia64/include/proc.h | 5 | ||||
| -rw-r--r-- | sys/powerpc/include/proc.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sys/ia64/include/proc.h b/sys/ia64/include/proc.h index aeacc2a2cf2d..a9b6bfe3d0b6 100644 --- a/sys/ia64/include/proc.h +++ b/sys/ia64/include/proc.h @@ -28,6 +28,9 @@ * rights to redistribute these changes. */ +#ifndef _MACHINE_PROC_H_ +#define _MACHINE_PROC_H_ + #include <machine/globaldata.h> #include <machine/globals.h> @@ -51,3 +54,5 @@ struct mdthread { struct mdproc { struct user *md_uservirt; /* virtual address of p_addr */ }; + +#endif /* !_MACHINE_PROC_H_ */ diff --git a/sys/powerpc/include/proc.h b/sys/powerpc/include/proc.h index 33eb77853c8e..eb2e25591fd2 100644 --- a/sys/powerpc/include/proc.h +++ b/sys/powerpc/include/proc.h @@ -32,6 +32,9 @@ * $FreeBSD$ */ +#ifndef _MACHINE_PROC_H_ +#define _MACHINE_PROC_H_ + #include <machine/globals.h> /* @@ -42,3 +45,5 @@ struct mdthread { struct mdproc { }; + +#endif /* !_MACHINE_PROC_H_ */ |
