about summary refs log tree commit diff stats
path: root/state.h
diff options
context:
space:
mode:
authorDaniel <steew0x8@protonmail.com>2021-11-07 00:06:58 +0100
committerDaniel <steew0x8@protonmail.com>2021-11-07 00:06:58 +0100
commit65b783d28ec01e8ed4ee8de0ae3180f6850a5a5b (patch)
tree6f2f10ed496fb26c628ad43496c85437aecca6ba /state.h
parent87b3c38991df6587d6ee720ddbfd2f3eb78d926c (diff)
downloadrpncalc-65b783d28ec01e8ed4ee8de0ae3180f6850a5a5b.tar.gz
fix list and error without message
Diffstat (limited to 'state.h')
-rw-r--r--state.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/state.h b/state.h
index a9b1a7b..fc7a4e5 100644
--- a/state.h
+++ b/state.h
@@ -26,6 +26,7 @@ typedef struct {
   stack stk;
   /* btree elements */
   command *sorted; /* sorted by function name */
+  int numel;
 } state;
 
 #endif