date and time created 81/03/02 21:29:48 by peter
[unix-history] / usr / src / usr.bin / pascal / libpc / DEFNAME.c
CommitLineData
6df892be
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
3static char sccsid[] = "@(#)DEFNAME.c 1.1 %G%";
4
5
6#include "h00vars.h"
7
8DEFNAME(filep, name, maxnamlen, datasize)
9
10 register struct iorec *filep;
11 char *name;
12 int maxnamlen;
13 int datasize;
14{
15 filep = GETNAME(filep, name, maxnamlen, datasize);
16 filep->funit |= FDEF;
17}