11646Smckusick /* Copyright (c) 1979 Regents of the University of California */
21646Smckusick 
3*3000Smckusic static char sccsid[] = "@(#)DEFNAME.c 1.2 03/07/81";
41646Smckusick 
51646Smckusick #include "h00vars.h"
61646Smckusick 
71646Smckusick DEFNAME(filep, name, maxnamlen, datasize)
81646Smckusick 
91646Smckusick 	register struct iorec	*filep;
101646Smckusick 	char			*name;
11*3000Smckusic 	long			maxnamlen;
12*3000Smckusic 	long			datasize;
131646Smckusick {
141646Smckusick 	filep = GETNAME(filep, name, maxnamlen, datasize);
151646Smckusick 	filep->funit |= FDEF;
161646Smckusick }
17