Home | History | Annotate | Line # | Download | only in include
frame.h revision 1.5
      1 /*	$NetBSD: frame.h,v 1.5 1994/10/26 09:10:27 cgd Exp $	*/
      2 
      3 /* use the common m68k definition */
      4 #include <m68k/frame.h>
      5 
      6 /* hack for tracing call stack.  used by tracedump() */
      7 struct funcall_frame {
      8 	struct funcall_frame *fr_savfp;
      9 	int fr_savpc;
     10 	int fr_arg[1];
     11 };
     12