Removed some incorrect STATIC's
This commit is contained in:
parent
9595dda6b5
commit
612217f906
4 changed files with 3 additions and 7 deletions
|
@ -54,7 +54,7 @@ INCLUDES = -I$(MHDIR) -I$(EMHOME)/h -I$(PKGDIR)
|
||||||
OPTIM= -O
|
OPTIM= -O
|
||||||
CFLAGS = $(PROFILE) $(INCLUDES) $(OPTIM) $(COPTIONS) -DSTATIC=
|
CFLAGS = $(PROFILE) $(INCLUDES) $(OPTIM) $(COPTIONS) -DSTATIC=
|
||||||
LINTFLAGS = -DSTATIC= -DNORCSID
|
LINTFLAGS = -DSTATIC= -DNORCSID
|
||||||
LDFLAGS = -i $(PROFILE)
|
LDFLAGS = $(PROFILE)
|
||||||
|
|
||||||
LSRC = declar.c expression.c program.c statement.c tokenfile.c
|
LSRC = declar.c expression.c program.c statement.c tokenfile.c
|
||||||
LOBJ = declar.o expression.o program.o statement.o tokenfile.o
|
LOBJ = declar.o expression.o program.o statement.o tokenfile.o
|
||||||
|
|
|
@ -78,7 +78,7 @@ MarkUsed(nd)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC int
|
int
|
||||||
ChkConstant(expp)
|
ChkConstant(expp)
|
||||||
register struct node *expp;
|
register struct node *expp;
|
||||||
{
|
{
|
||||||
|
@ -175,7 +175,7 @@ ChkValue(expp)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
STATIC int
|
int
|
||||||
ChkLinkOrName(expp)
|
ChkLinkOrName(expp)
|
||||||
register struct node *expp;
|
register struct node *expp;
|
||||||
{
|
{
|
||||||
|
|
|
@ -73,7 +73,6 @@ Forward(nd, tp)
|
||||||
fw_type->f_type = tp;
|
fw_type->f_type = tp;
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC
|
|
||||||
chk_prog_params()
|
chk_prog_params()
|
||||||
{
|
{
|
||||||
/* the program parameters must be global variables of some file type */
|
/* the program parameters must be global variables of some file type */
|
||||||
|
@ -97,7 +96,6 @@ chk_prog_params()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC
|
|
||||||
chk_directives()
|
chk_directives()
|
||||||
{
|
{
|
||||||
/* check if all forward declarations are defined */
|
/* check if all forward declarations are defined */
|
||||||
|
|
|
@ -499,7 +499,6 @@ FreeForward(for_type)
|
||||||
free_forwtype(for_type);
|
free_forwtype(for_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC
|
|
||||||
chk_forw_types()
|
chk_forw_types()
|
||||||
{
|
{
|
||||||
/* check all forward references (in pointer types) */
|
/* check all forward references (in pointer types) */
|
||||||
|
@ -566,7 +565,6 @@ chk_forw_types()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC
|
|
||||||
TstCaseConstants(nd, sel, sel1)
|
TstCaseConstants(nd, sel, sel1)
|
||||||
register struct node *nd;
|
register struct node *nd;
|
||||||
register struct selector *sel, *sel1;
|
register struct selector *sel, *sel1;
|
||||||
|
|
Loading…
Reference in a new issue