aboutsummaryrefslogtreecommitdiffstats
path: root/forthmachine.h
diff options
context:
space:
mode:
authordan <[email protected]>2023-06-02 22:38:16 -0400
committerdan <[email protected]>2023-06-02 22:38:16 -0400
commit31ae9a14ef4d76eaf3ad79fb31477ea4596d047e (patch)
treea00850c3d809fc7b31ed9183c5f617125df18ac9 /forthmachine.h
parente0fcdc6e3577f8c40b019396b400928379d928b9 (diff)
downloadforth-31ae9a14ef4d76eaf3ad79fb31477ea4596d047e.tar.gz
forth-31ae9a14ef4d76eaf3ad79fb31477ea4596d047e.tar.bz2
forth-31ae9a14ef4d76eaf3ad79fb31477ea4596d047e.zip
feat: can overwrite existing functions
Diffstat (limited to 'forthmachine.h')
-rw-r--r--forthmachine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/forthmachine.h b/forthmachine.h
index 50eb4d8..28f3932 100644
--- a/forthmachine.h
+++ b/forthmachine.h
@@ -65,7 +65,7 @@ struct optable {
*/
wordop* optable_getop(optable* optable, char *word);
-void defineop(forthmachine* fm, char *input, int* starti);
+void optable_defineop(optable* optable, char *input, int* starti);
optable* optable_new();