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 */ 71654Smckusick 840865Sbostic #ifndef lint 9*62092Sbostic static char sccsid[] = "@(#)FSAV.c 8.1 (Berkeley) 06/06/93"; 1040865Sbostic #endif /* not lint */ 111654Smckusick 121654Smckusick #include "h00vars.h" 131654Smckusick 141654Smckusick struct formalrtn * 151654Smckusick FSAV(entryaddr, cbn, frtn) 161654Smckusick long (*entryaddr)(); 171654Smckusick long cbn; 181654Smckusick register struct formalrtn *frtn; 191654Smckusick { 203432Smckusic frtn->fentryaddr = entryaddr; 213432Smckusic frtn->fbn = cbn; 229134Smckusick blkcpy(&_disply[1], &frtn->fdisp[0], 239134Smckusick frtn->fbn * sizeof(struct display)); 241654Smckusick return frtn; 251654Smckusick } 26