Fix for older compilers that only allow variables to be declared at the top

of a program block.
This commit is contained in:
Brian Koropoff 2003-01-28 23:55:21 +00:00
parent 1668dd5c1a
commit 06cd013fc6

View file

@ -476,11 +476,10 @@ GIB_Parse_Embedded (const char *program, unsigned int flags, gib_tree_t **embedd
{
unsigned int i, n, t;
char c, d, *str;
gib_parse_error = false;
gib_tree_t *lines = 0, **line = &lines, *cur, *tokens, *emb, *tmp;
unsigned int start, end;
gib_parse_error = false;
*embedded = 0;
for (i = 0; program[i]; i++) {