Difficulty in implementing tail recursive calls in C
stackoverflow.com
Difficulty in implementing tail recursive calls in C
1–2 of 2 posts
Re: Difficulty in implementing tail recursive calls in C
#2Common Lisp has no stanadrd-defined support for tail recursion (though compilers do).
I was able to easily hack up portable tail recursion using macros and whatnot.
http://www.kylheku.com/cgit/lisp-snippets/tree/tail-recursio...
No need to drop into the compiler level.