[git commit branch/1_32_stable] shell: remove FAST_FUNC from a static function

Denys Vlasenko vda.linux at googlemail.com
Fri Jan 1 13:30:58 UTC 2021


commit: https://git.busybox.net/busybox/commit/?id=06f7cf148767a0b521bd296c276df5169add5cfb
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/1_32_stable

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/math.c | 4 ++--
 1 file 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;


More information about the busybox-cvs mailing list