Protect this agains multiple includes so it can be included by db_machdep.h

This commit is contained in:
gwr 1997-01-27 22:58:45 +00:00
parent 3cf095df8d
commit 09fa19ebb5
1 changed files with 6 additions and 1 deletions

View File

@ -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_ */