From 09fa19ebb5ae24b7dbe052380b8091204318f418 Mon Sep 17 00:00:00 2001 From: gwr Date: Mon, 27 Jan 1997 22:58:45 +0000 Subject: [PATCH] Protect this agains multiple includes so it can be included by db_machdep.h --- sys/arch/m68k/include/frame.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/arch/m68k/include/frame.h b/sys/arch/m68k/include/frame.h index 8e9beca0e125..e3351595ce41 100644 --- a/sys/arch/m68k/include/frame.h +++ b/sys/arch/m68k/include/frame.h @@ -1,4 +1,4 @@ -/* $NetBSD: frame.h,v 1.12 1996/05/16 16:51:30 is Exp $ */ +/* $NetBSD: frame.h,v 1.13 1997/01/27 22:58:45 gwr Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -42,6 +42,9 @@ * @(#)frame.h 8.1 (Berkeley) 6/10/93 */ +#ifndef _M68K_FRAME_H_ +#define _M68K_FRAME_H_ + struct frame { struct trapframe { int tf_regs[16]; @@ -305,3 +308,5 @@ struct fpframe060 { u_long fpf6_upper, fpf6_lower; }; + +#endif /* _M68K_FRAME_H_ */