Fixed missing ; before }
This commit is contained in:
parent
f4757c8370
commit
094b1d0742
|
@ -18,7 +18,6 @@ LEXLIB = -ll
|
||||||
all: as_parser eval/eval
|
all: as_parser eval/eval
|
||||||
|
|
||||||
as_parser: dummy $(OFILES)
|
as_parser: dummy $(OFILES)
|
||||||
make $(OFILES)
|
|
||||||
$(CC) -o as_parser $(OFILES) $(LIBS) $(LEXLIB)
|
$(CC) -o as_parser $(OFILES) $(LIBS) $(LEXLIB)
|
||||||
|
|
||||||
eval/eval:
|
eval/eval:
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
extern char *strindex();
|
extern char *strindex();
|
||||||
|
|
||||||
static struct Op_info { char *name, *type}
|
static struct Op_info { char *name, *type; }
|
||||||
op_info[ MAX_OPERANDS] = { { 0, 0}};
|
op_info[ MAX_OPERANDS] = { { 0, 0}};
|
||||||
|
|
||||||
static int n_ops = 0; /* Number of opertands of current
|
static int n_ops = 0; /* Number of opertands of current
|
||||||
|
|
Loading…
Reference in a new issue