diff options
Diffstat (limited to 'sys/arch/vax/include/reg.h')
-rw-r--r-- | sys/arch/vax/include/reg.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/vax/include/reg.h b/sys/arch/vax/include/reg.h index 2d0de80db20..b04552f8165 100644 --- a/sys/arch/vax/include/reg.h +++ b/sys/arch/vax/include/reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: reg.h,v 1.2 1997/05/29 00:04:49 niklas Exp $ */ +/* $OpenBSD: reg.h,v 1.3 2000/10/09 23:11:57 bjc Exp $ */ /* $NetBSD: reg.h,v 1.3 1995/04/12 15:26:52 ragge Exp $ */ /* @@ -32,7 +32,9 @@ */ /* All bugs are subject to removal without further notice */ - + +#ifndef _VAX_REG_H_ +#define _VAX_REG_H_ struct reg { int r0; /* General registers saved upon trap/syscall */ @@ -54,3 +56,4 @@ struct reg { int psl; /* User psl */ }; +#endif /* _VAX_REG_H_ */ |