aboutsummaryrefslogtreecommitdiff
path: root/shell/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/math.h')
-rw-r--r--shell/math.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/math.h b/shell/math.h
index 41ef6e8df..452ddaddd 100644
--- a/shell/math.h
+++ b/shell/math.h
@@ -73,13 +73,12 @@ typedef long arith_t;
73 73
74typedef const char* FAST_FUNC (*arith_var_lookup_t)(const char *name); 74typedef const char* FAST_FUNC (*arith_var_lookup_t)(const char *name);
75typedef void FAST_FUNC (*arith_var_set_t)(const char *name, const char *val); 75typedef void FAST_FUNC (*arith_var_set_t)(const char *name, const char *val);
76//typedef const char* FAST_FUNC (*arith_var_endofname_t)(const char *name);
77 76
78typedef struct arith_state_t { 77typedef struct arith_state_t {
79 const char *errmsg; 78 const char *errmsg;
80 arith_var_lookup_t lookupvar; 79 arith_var_lookup_t lookupvar;
81 arith_var_set_t setvar; 80 arith_var_set_t setvar;
82// arith_var_endofname_t endofname; 81 uint64_t evaluation_disabled;
83 void *list_of_recursed_names; 82 void *list_of_recursed_names;
84} arith_state_t; 83} arith_state_t;
85 84