GURU.error
21-Sep-90 18:47:39
Sb: #826-GURU.error
Fm: Mike Spille/Manx 71545,1466
To: Henry Williams 73527,1446
OK the problem is you have something like this:
a ()
{
b();
}
b ()
{
a();
}
Now let's say you call function 'a' here from main(). It will in turn call
function 'b'. Which will call function 'a', which will call function 'b',
etc. etc. without end. Each call takes up a certain amount of stack space,
and eventually you hit the end of the stack, and keep on going.
From looking at your program, I _think_ you need to remove the call to
direction() out of maze() and you should be OK.
-Mike