This commit is contained in:
rsc 2006-04-14 00:15:16 +00:00
parent b6d98463b4
commit 90a99688be
4 changed files with 6 additions and 1243 deletions

View file

@ -369,7 +369,7 @@ getfirst(int n, int t) /* find n-th occurrence of type t */
double
getblkvar(obj *p, char *s) /* find variable s2 in block p */
{
YYSTYPE y, getblk();
YYSTYPE y;
y = getblk(p, s);
return y.f;
@ -378,7 +378,7 @@ getblkvar(obj *p, char *s) /* find variable s2 in block p */
obj*
getblock(obj *p, char *s) /* find variable s in block p */
{
YYSTYPE y, getblk();
YYSTYPE y;
y = getblk(p, s);
return y.o;