xref: /netbsd-src/sys/arch/sun3/include/frame.h (revision d9158b13b5dfe46201430699a3f7a235ecf28df3)
1 /*
2  *	$Id: frame.h,v 1.4 1994/02/04 08:19:57 glass Exp $
3  */
4 
5 /* use the common m68k definition */
6 #include <m68k/frame.h>
7 
8 /* hack for tracing call stack.  used by tracedump() */
9 struct funcall_frame {
10 	struct funcall_frame *fr_savfp;
11 	int fr_savpc;
12 	int fr_arg[1];
13 };
14