about summary refs log tree commit diff stats
path: root/state.c
diff options
context:
space:
mode:
authorDaniel <steew0x8@protonmail.com>2021-11-03 23:38:02 +0100
committerDaniel <steew0x8@protonmail.com>2021-11-03 23:38:02 +0100
commite7748c3eb607ace655bc48d807cbbc116960a611 (patch)
treed2009a40f204993c13372a26e5b69c9839e02d52 /state.c
parentd465d6e672eba42da6e2dd729e02e6b78b0bf22a (diff)
downloadrpncalc-e7748c3eb607ace655bc48d807cbbc116960a611.tar.gz
accidentally deleted header files
Diffstat (limited to 'state.c')
-rw-r--r--state.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/state.c b/state.c
index 2c504e8..8b13789 100644
--- a/state.c
+++ b/state.c
@@ -1,6 +1 @@
-#include "state.h"
 
-void push(state *s, double d) {
-  s->stack.val[s->stack.count+1] = d;
-  s->stack.count += 1;
-}