From 8e685a00717348d5b1af9cac180269b15fa25b71 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Fri, 23 Oct 2020 18:35:14 +0200 Subject: [PATCH] Mention recursion. --- doc/cc65.sgml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/cc65.sgml b/doc/cc65.sgml index 578217307..115f0a30c 100644 --- a/doc/cc65.sgml +++ b/doc/cc65.sgml @@ -446,10 +446,10 @@ Here is a description of all the command line options: Use static storage for local variables instead of storage on the stack. Since the stack is emulated in software, this gives shorter and usually - faster code, but the code is no longer reentrant. The difference between - void f (void)