xref: /csrg-svn/usr.bin/pascal/libpc/FCALL.c (revision 62092)
140865Sbostic /*-
2*62092Sbostic  * Copyright (c) 1979, 1993
3*62092Sbostic  *	The Regents of the University of California.  All rights reserved.
440865Sbostic  *
540865Sbostic  * %sccs.include.redist.c%
640865Sbostic  */
71650Smckusick 
840865Sbostic #ifndef lint
9*62092Sbostic static char sccsid[] = "@(#)FCALL.c	8.1 (Berkeley) 06/06/93";
1040865Sbostic #endif /* not lint */
111650Smckusick 
121650Smckusick #include "h00vars.h"
131650Smckusick 
FCALL(save,frtn)143430Smckusic FCALL(save, frtn)
153430Smckusic 	char *save;
161650Smckusick 	register struct formalrtn *frtn;
171650Smckusick {
189134Smckusick 	blkcpy(&_disply[1], save, frtn->fbn * sizeof(struct display));
199134Smckusick 	blkcpy(&frtn->fdisp[0], &_disply[1],
209134Smckusick 		frtn->fbn * sizeof(struct display));
211650Smckusick }
22