aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-10-01 00:57:05 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2020-10-01 00:57:05 +0200
commit841878e7eeb8861aa1b6f94436b8dcf3b064d1e4 (patch)
tree59d600b3244c6f1881ba2af0e1212a700eb4cdf7 /shell
parentb1c7a66ca6ff913afba17cfe6f16a78a66915c07 (diff)
downloadbusybox-841878e7eeb8861aa1b6f94436b8dcf3b064d1e4.tar.gz
shell: remove FAST_FUNC from a static function
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/math.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/math.c b/shell/math.c
index aac5017d0..2942cdd26 100644
--- a/shell/math.c
+++ b/shell/math.c
@@ -251,7 +251,7 @@ typedef struct remembered_name {
} remembered_name;
-static arith_t FAST_FUNC
+static arith_t
evaluate_string(arith_state_t *math_state, const char *expr);
static const char*
@@ -582,7 +582,7 @@ static arith_t strto_arith_t(const char *nptr, char **endptr)
# endif
#endif
-static arith_t FAST_FUNC
+static arith_t
evaluate_string(arith_state_t *math_state, const char *expr)
{
operator lasttok;