about summary refs log tree commit diff stats
path: root/cmds.h
diff options
context:
space:
mode:
authorDaniel Perez <steew0x8@protonmail.com>2021-12-02 11:39:02 +0100
committerDaniel Perez <steew0x8@protonmail.com>2021-12-02 11:39:02 +0100
commit19dcb7cd30d9bfb690a7dfedf213912173e4d2dd (patch)
treefd368f1e2dc2edbd5a4e090fc26dd0d454aed382 /cmds.h
parentfa22526b8477b30fb50e6019fd0248f18964c788 (diff)
downloadrpncalc-19dcb7cd30d9bfb690a7dfedf213912173e4d2dd.tar.gz
clean code up, move basic ops to cmds.c HEAD master
Diffstat (limited to 'cmds.h')
-rw-r--r--cmds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds.h b/cmds.h
index 78a1c13..5951148 100644
--- a/cmds.h
+++ b/cmds.h
@@ -6,6 +6,6 @@
 
 extern command CMD_LIST[];
 void init_state(state *s);
-void exec(char *buf, state *s);
+int exec(char *buf, state *s);
 
 #endif