xref: /original-bsd/usr.bin/pascal/libpc/FRTN.c (revision 8e206d2f)
1 /*-
2  * Copyright (c) 1979 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)FRTN.c	1.6 (Berkeley) 04/09/90";
10 #endif /* not lint */
11 
12 #include "h00vars.h"
13 
14 FRTN(frtn, save)
15 	register struct formalrtn *frtn;
16 	char *save;
17 {
18 	blkcpy(save, &_disply[1], frtn->fbn * sizeof(struct display));
19 }
20