1*40865Sbostic /*- 2*40865Sbostic * Copyright (c) 1979 The Regents of the University of California. 3*40865Sbostic * All rights reserved. 4*40865Sbostic * 5*40865Sbostic * %sccs.include.redist.c% 6*40865Sbostic */ 71653Smckusick 8*40865Sbostic #ifndef lint 9*40865Sbostic static char sccsid[] = "@(#)FRTN.c 1.6 (Berkeley) 04/09/90"; 10*40865Sbostic #endif /* not lint */ 111653Smckusick 121653Smckusick #include "h00vars.h" 131653Smckusick 143431Smckusic FRTN(frtn, save) 151653Smckusick register struct formalrtn *frtn; 163431Smckusic char *save; 171653Smckusick { 189134Smckusick blkcpy(save, &_disply[1], frtn->fbn * sizeof(struct display)); 191653Smckusick } 20