aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/tpic/misc.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2006-04-14 00:15:16 +0000
committerrsc <devnull@localhost>2006-04-14 00:15:16 +0000
commit90a99688be7fd813273e1f1f28ba8fa34cb9dc44 (patch)
treea36265435b486a6ec4837cb6bb26ac67c555e2eb /src/cmd/tpic/misc.c
parentb6d98463b416e9d95bc88f948b4abdff6b24aede (diff)
downloadplan9port-90a99688be7fd813273e1f1f28ba8fa34cb9dc44.tar.gz
plan9port-90a99688be7fd813273e1f1f28ba8fa34cb9dc44.tar.bz2
plan9port-90a99688be7fd813273e1f1f28ba8fa34cb9dc44.zip
fixes
Diffstat (limited to 'src/cmd/tpic/misc.c')
-rw-r--r--src/cmd/tpic/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/tpic/misc.c b/src/cmd/tpic/misc.c
index 72e83303..1dbdffcc 100644
--- a/src/cmd/tpic/misc.c
+++ b/src/cmd/tpic/misc.c
@@ -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;