Home | History | Annotate | Line # | Download | only in include
frame.h revision 1.4
      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