bc: Increment the number of nestting to 32

The number of 10 nested control flow data structures was too
low, and a value of 32 would work for almost any bc program.
This commit is contained in:
Roberto E. Vargas Caballero 2025-12-13 15:37:08 +01:00
parent 54f1f935c0
commit 8ceddc568d

2
bc.y
View File

@ -15,7 +15,7 @@
#include "util.h"
#define DIGITS "0123456789ABCDEF"
#define NESTED_MAX 10
#define NESTED_MAX 32
#define funid(f) ((f)[0] - 'a' + 1)